File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11# C++ project template with Google Tests and CI/CD
22
33This is a project template. Feel free to use & fork it. It contains all pre-configured
4- CMakeLists.txt, so to use it, just replace project name with your in
4+ CMakeLists.txt, so to use it, replace project name with your one in
55[ main CmakeLists.txt] ( CMakeLists.txt ) , and all target and executable names in
66[ CI/CD script] ( ./.github/workflows/ci_tests.yml ) . Sample program prints a greeting for the first argument.
77
88## How to build and run
99
10- Run following commands from project directory.
10+ Run the following commands from the project directory.
1111
12121 . Create CMake cache
1313
1414``` shell
1515cmake -S . -B cmake-build
1616```
1717
18- 2 . Build main target
18+ 2 . Build executable target
1919
2020``` shell
2121cmake --build cmake-build --target cpp_tests
@@ -27,7 +27,7 @@ cmake --build cmake-build --target cpp_tests
2727cmake --build cmake-build --target cpp_tests_tests
2828```
2929
30- 4 . Run main target
30+ 4 . Run executable target
3131
3232* On Windows:
3333
You can’t perform that action at this time.
0 commit comments