https://github.com/prophetru/bulkcmd
Educational project
https://github.com/prophetru/bulkcmd
cmake cpp doxygen gtest otus
Last synced: 7 months ago
JSON representation
Educational project
- Host: GitHub
- URL: https://github.com/prophetru/bulkcmd
- Owner: ProphetRu
- License: apache-2.0
- Created: 2024-03-12T09:13:51.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-12T09:25:10.000Z (about 2 years ago)
- Last Synced: 2025-05-16T11:09:03.360Z (about 1 year ago)
- Topics: cmake, cpp, doxygen, gtest, otus
- Language: C++
- Homepage:
- Size: 142 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bulk Cmd
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 bulk
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 bulk
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE="path/to/vcpkg/scripts/buildsystems/vcpkg.cmake"
# build release
cmake --build . --config Release
```