You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
474 B

2 years ago
# Google Test 範例專案
這是 Google Test 的範例專案
## 使用方法
首先需要將專案 clone 下來
```sh
git clone https://gitea.cglab.cs.nccu.edu.tw/yhchen/gtest_example.git
```
建立 build 資料夾,所有編譯需要的檔案會被建立在這個資料夾裡面
```sh
mkdir build
cd build
```
使用 cmake 建立 makefile並編譯檔案
```sh
cmake ..
make
```
進到 `unittest` 目錄,如果有看到 `utest` 執行檔,代表編譯順利完成