Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1014 Bytes

File metadata and controls

42 lines (25 loc) · 1014 Bytes

code-test

Code test templates, which support compilation and debugging.


revise

  1. "miDebuggerPath": "your/gdb/path/gdb.exe",

config

  • VSCode(editor) + CMAKE(compile) + MinGW(debug)

more function

  1. Optional debugging items

    Optional debugging items

  2. Automate package generation

    In a recent commit, the create_pkg.ps1 and create_pkg.sh were designed when you perform create_pkg.ps1 <project_name> The script will automatically generates a standard project template.

    # for windows
    ./create_pkg.ps1 <project_name>
    # for linux
    bash create_pkg.sh <project_name>
    

    Once executed, you will see the project generated in the src directory.

    Automate package generation

    Automate package generation project

    After that, all you have to do is build, and you're ready to do your own testing!

  3. gtest support

  4. ...