- Install
cygwin64
- Install
gcc
andg++
-
Download google test https://github.com/google/googletest/releases
-
Unzip it
-
Build it
cd googletest # Main directory of the cloned repository. mkdir build # Create a directory to hold the build output. cd build cmake .. make
-
Copy
include
content to.lib/gtest
-
Copy
libgtest.a
to.lib
- Open google test file and press
F5
in VSCode (it will triggerlunch.json
located at.vscode
dir)
./a.exe
-
Install Python 3
-
Install
virtualenv
pip install virtualenv
-
Create virtual environment
virtualenv .venv
-
Activate virtual env
source .venv/Scripts/activate
-
Install packages
pip install -i requirements.txt
pytest