Skip to content

Commit

Permalink
Grammar fix in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bialger committed Aug 2, 2024
1 parent 51c6652 commit b67da02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# 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

```shell
cmake -S . -B cmake-build
```

2. Build main target
2. Build executable target

```shell
cmake --build cmake-build --target cpp_tests
Expand All @@ -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:

Expand Down

0 comments on commit b67da02

Please sign in to comment.