Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 524 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 524 Bytes

CPP-CLI-APP-TEMPLATE

Enter project info here

Init template

  1. Clone repo created from template

  2. Enter repo directory

  3. Run script:

./scripts/init_template.sh <APP_NAME>

Build

cmake -S . -B_build
cmake --build _build

Testing

cmake -S . -B_build -DBUILD_TESTS=ON
cmake --build _build
cd _build && ctest
# or 
cmake --build _build --target hello_test
./_build/hello_test

Usage

CPP-CLI-APP-TEMPLATE --help