Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 623 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 623 Bytes

Allocator

Educational project with googletest

Build local Linux

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

cd Allocator
mkdir build && cd build

cmake ..

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

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

Build local Windows

vcpkg install gtest
vcpkg integrate install

cd Allocator
mkdir build && cd build

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

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

Testing

ctest