CppExperiments/PoolAllocator/CMakeLists.txt

8 lines
199 B
CMake
Raw Permalink Normal View History

2021-10-21 13:00:01 +00:00
cmake_minimum_required(VERSION 3.1)
project(poolallocator)
set (CMAKE_CXX_STANDARD 17)
add_executable(poolallocator main.cpp PoolAllocator.h)
install(TARGETS poolallocator RUNTIME DESTINATION bin)