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.
- Host: GitHub
- URL: https://github.com/prophetru/samplecalc
- Owner: ProphetRu
- License: apache-2.0
- Created: 2024-01-02T12:04:51.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-10T10:44:38.000Z (over 2 years ago)
- Last Synced: 2025-02-17T22:34:51.536Z (over 1 year ago)
- Topics: class, cmake, cpp, gtest, static, template
- Language: C++
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```