9 lines
179 B
CMake
9 lines
179 B
CMake
cmake_minimum_required(VERSION 3.24)
|
|
project(thread_pool_v2)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
aux_source_directory(pool DIR_POOL)
|
|
|
|
add_executable(thread_pool_v2 main.cpp ${DIR_POOL})
|