CppExperiments/PoolAllocator/CMakeLists.txt
Andrea Bontempi 8a1f664443 Init
2021-10-21 15:00:01 +02:00

8 lines
199 B
CMake

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)