diff --git a/README.md b/README.md index b18db8a..465c79d 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # C++ project template with Google Tests and CI/CD This is a project template. Feel free to use & fork it. It contains all pre-configured -CMakeLists.txt, so to use it, just replace project name with your in +CMakeLists.txt, so to use it, replace project name with your one in [main CmakeLists.txt](CMakeLists.txt), and all target and executable names in [CI/CD script](./.github/workflows/ci_tests.yml). Sample program prints a greeting for the first argument. ## How to build and run -Run following commands from project directory. +Run the following commands from the project directory. 1. Create CMake cache @@ -15,7 +15,7 @@ Run following commands from project directory. cmake -S . -B cmake-build ``` -2. Build main target +2. Build executable target ```shell cmake --build cmake-build --target cpp_tests @@ -27,7 +27,7 @@ cmake --build cmake-build --target cpp_tests cmake --build cmake-build --target cpp_tests_tests ``` -4. Run main target +4. Run executable target * On Windows: