Skip to content

Commit 8b10843

Browse files
committed
Update README.md
1 parent 986f105 commit 8b10843

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,17 @@ A CMake file template and sample C++ application which allows unit test by Googl
77
- "src" directory for application source code.
88
- "test" directory for unit tests.
99
- std::thread aware.
10-
- Tested with Ubuntu 20.04 with GCC.
11-
- Tested with Windows 11 with Visual Studio C++ compiler.
12-
- Tested with WSL2 with VS CODE remote server.
10+
- Generate Gcov data files during test ( except Windows platform )
11+
- Tested:
12+
- Ubuntu 20.04 with GCC.
13+
- Windows 11 with Visual Studio C++ compiler.
14+
- WSL2 with VS CODE remote server.
15+
- Automatically tested by GitHub Actions.
16+
- linux-latest, Debug
17+
- linux-latest, Release
18+
- windows-latest, Debug
19+
- windows-latest, Release
20+
1321
## Screenshot
1422
![](image/screenshot.png)
1523
## Requirement
@@ -79,7 +87,7 @@ Run followings on the shell.
7987
sudo snap install code --classic
8088
sudo apt-get install build-essential cmake
8189
```
82-
- Note 1: After installing VS CODE, install the [C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack) to the VS CODE.
90+
- Note 1: After installing VS CODE, install the [C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack) and the [Gcov Viewer extension](https://marketplace.visualstudio.com/items?itemName=JacquesLucke.gcov-viewer) to the VS CODE.
8391
### Windows
8492

8593
Run followings on the PowerShell or Command .
@@ -90,7 +98,7 @@ winget install Microsoft.VisualStudio.2022.Community -e
9098
winget install Git.Git -e
9199
winget install Python.Python.3 -e
92100
```
93-
- Note 1: After installing VS CODE, install the [C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack) to the VS CODE.
101+
- Note 1: After installing VS CODE, install the [C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack) and the [Gcov Viewer extension](https://marketplace.visualstudio.com/items?itemName=JacquesLucke.gcov-viewer) to the VS CODE.
94102
- Note 2: The above winget install the CMake installer only. Run the CMake once and complete the installation.
95103
- Note 3: The above wget install the VisualStudio launcher only. [Install the C++ workload](https://docs.microsoft.com/en-us/cpp/build/vscpp-step-0-installation?view=msvc-170) after winget installation.
96104

@@ -106,7 +114,7 @@ Then, run followings on the Ubuntu shell.
106114
```Shell
107115
sudo apt-get install build-essential cmake ca-certificates
108116
```
109-
- Note 1: After installing VS CODE, install the [C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack) to the VS CODE.
117+
- Note 1: After installing VS CODE, install the [C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack) and the [Gcov Viewer extension](https://marketplace.visualstudio.com/items?itemName=JacquesLucke.gcov-viewer) to the VS CODE.
110118

111119

112120
## Customize the project

0 commit comments

Comments
 (0)