Skip to content

ProphetRu/OuterJoin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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