Skip to content

ProphetRu/Allocator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

63eef29 · Jan 26, 2024

History

1 Commit
Jan 26, 2024
Jan 26, 2024
Jan 26, 2024
Jan 26, 2024
Jan 26, 2024
Jan 26, 2024
Jan 26, 2024

Repository files navigation

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