Skip to content

Commit ea598cd

Browse files
committed
Added links to existing issues to the message
1 parent 8e55936 commit ea598cd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# C++ project template with Google Tests and CI/CD
22

3-
This is a project template. Feel free to use it. It contains all pre-configured
3+
This is a project template. Feel free to use & fork it. It contains all pre-configured
44
CMakeLists.txt, so to use it, just replace project name with your in
55
[main CmakeLists.txt](CMakeLists.txt), and all target and executable names in
6-
[CI/CD script](./.github/workflows/ci_tests.yml). Sample program prints first argument.
6+
[CI/CD script](./.github/workflows/ci_tests.yml). Sample program prints a greeting for the first argument.
77

8-
## How to run
8+
## How to build and run
99

1010
Run following commands from project directory.
1111

@@ -32,10 +32,10 @@ cmake --build cmake-build --target cpp_tests_tests
3232
* On Windows:
3333

3434
```shell
35-
.\cmake-build\bin\cpp_tests.exe World || .\cmake-build\bin\Debug\cpp_tests.exe World
35+
.\cmake-build\cpp_tests.exe World
3636
```
3737

38-
* On POSIX:
38+
* On *nix:
3939

4040
```shell
4141
./cmake-build/bin/cpp_tests World
@@ -46,10 +46,10 @@ cmake --build cmake-build --target cpp_tests_tests
4646
* On Windows:
4747

4848
```shell
49-
.\cmake-build\tests\cpp_tests_tests.exe || .\cmake-build\tests\Debug\cpp_tests_tests.exe
49+
.\cmake-build\cpp_tests_tests.exe
5050
```
5151

52-
* On POSIX:
52+
* On *nix:
5353

5454
```shell
5555
./cmake-build/tests/cpp_tests_tests

0 commit comments

Comments
 (0)