Skip to content

Commit

Permalink
Added links to existing issues to the message
Browse files Browse the repository at this point in the history
  • Loading branch information
bialger committed Aug 1, 2024
1 parent 8e55936 commit ea598cd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# C++ project template with Google Tests and CI/CD

This is a project template. Feel free to use it. It contains all pre-configured
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
[main CmakeLists.txt](CMakeLists.txt), and all target and executable names in
[CI/CD script](./.github/workflows/ci_tests.yml). Sample program prints first argument.
[CI/CD script](./.github/workflows/ci_tests.yml). Sample program prints a greeting for the first argument.

## How to run
## How to build and run

Run following commands from project directory.

Expand All @@ -32,10 +32,10 @@ cmake --build cmake-build --target cpp_tests_tests
* On Windows:

```shell
.\cmake-build\bin\cpp_tests.exe World || .\cmake-build\bin\Debug\cpp_tests.exe World
.\cmake-build\cpp_tests.exe World
```

* On POSIX:
* On *nix:

```shell
./cmake-build/bin/cpp_tests World
Expand All @@ -46,10 +46,10 @@ cmake --build cmake-build --target cpp_tests_tests
* On Windows:

```shell
.\cmake-build\tests\cpp_tests_tests.exe || .\cmake-build\tests\Debug\cpp_tests_tests.exe
.\cmake-build\cpp_tests_tests.exe
```

* On POSIX:
* On *nix:

```shell
./cmake-build/tests/cpp_tests_tests
Expand Down

0 comments on commit ea598cd

Please sign in to comment.