An open API service indexing awesome lists of open source software.

https://github.com/prophetru/samplecalc

SampleCalc with gtest. Can be used as a template for future projects for education only.
https://github.com/prophetru/samplecalc

class cmake cpp gtest static template

Last synced: about 1 year ago
JSON representation

SampleCalc with gtest. Can be used as a template for future projects for education only.

Awesome Lists containing this project

README

          

# Sample Calc
Sample Calc with [googletest](https://github.com/google/googletest)

Can be used as a template for future projects for education only

## Project Supports
* cmake for build
* gtest to check
* automatically run tests after build
* automatic build for Ubuntu
* automatic build for Windows

## Build local
```shell
cd SampleCalc
git clone https://github.com/google/googletest.git

mkdir build && cd build

cmake ..

cmake --build . --config Release
```