https://github.com/prophetru/architecturemvc
Educational project
https://github.com/prophetru/architecturemvc
cmake cpp doxygen gtest otus
Last synced: about 1 year ago
JSON representation
Educational project
- Host: GitHub
- URL: https://github.com/prophetru/architecturemvc
- Owner: ProphetRu
- License: apache-2.0
- Created: 2024-02-14T14:41:01.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-14T15:01:00.000Z (over 2 years ago)
- Last Synced: 2025-02-17T22:34:51.861Z (over 1 year ago)
- Topics: cmake, cpp, doxygen, gtest, otus
- Language: C++
- Homepage:
- Size: 318 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Architecture MVC
Educational project with [googletest](https://github.com/google/googletest) and [doxygen](https://github.com/doxygen/doxygen)
## Build local Linux
```shell
sudo apt-get update && sudo apt-get install cmake libgtest-dev -y
cd ArchitectureMVC
mkdir build && cd build
cmake ..
# build release
cmake --build . --config Release
# build deb-package
cmake --build . --target package
```
## Build local Windows
```shell
vcpkg install gtest
vcpkg integrate install
cd ArchitectureMVC
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE="path/to/vcpkg/scripts/buildsystems/vcpkg.cmake"
# build release
cmake --build . --config Release
```