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

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

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
```