Sample Calc with googletest
Can be used as a template for future projects for education only
- cmake for build
- gtest to check
- automatically run tests after build
- automatic build for Ubuntu
- automatic build for Windows
cd SampleCalc
git clone https://github.com/google/googletest.git
mkdir build && cd build
cmake ..
cmake --build . --config Release