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

11 lines
312 B
CMake

cmake_minimum_required(VERSION 2.6)
project(threadpool)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
add_executable(threadpool main.cpp ThreadPool.cpp ThreadPool.h)
find_package (Threads)
target_link_libraries (threadpool ${CMAKE_THREAD_LIBS_INIT})
install(TARGETS threadpool RUNTIME DESTINATION bin)