Sample "Hello World" with googletest
Can be used as a template for future projects for education only
- project version
- cmake for build
- gtest to check the version number
- automatic version increase when pushing
- automatically run tests after build
- automatic build for Ubuntu
- automatic build for Windows
cd HelloWorld
git clone https://github.com/google/googletest.git
mkdir build && cd build
cmake ..
# debug
cmake --build .
# release
cmake --build . --config Release