Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 761 Bytes

File metadata and controls

37 lines (27 loc) · 761 Bytes

OuterJoin

Educational project with googletest, doxygen and boost asio.

Build local Linux

sudo apt-get update && sudo apt-get install cmake libgtest-dev libboost-all-dev -y

cd OuterJoin
mkdir build && cd build

cmake ..

# build release
cmake --build . --config Release

# build deb-package
cmake --build . --target package

Build local Windows

vcpkg install gtest boost-asio boost-system
vcpkg integrate install

cd OuterJoin
mkdir build && cd build

cmake .. -DCMAKE_TOOLCHAIN_FILE="path/to/vcpkg/scripts/buildsystems/vcpkg.cmake"

# build release
cmake --build . --config Release

Tests

ctest