Ticket #13317: CMakeLists.txt
| File CMakeLists.txt, 361 bytes (added by , 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | cmake_minimum_required (VERSION 2.8.11) |
| 2 | project (ThreadPoolTests) |
| 3 | |
| 4 | set(CMAKE_CXX_STANDARD 11) |
| 5 | |
| 6 | find_package(Boost COMPONENTS thread) |
| 7 | if (Boost_FOUND) |
| 8 | include_directories(${Boost_INCLUDE_DIR}) |
| 9 | else() |
| 10 | message(FATAL_ERROR "No Boost found") |
| 11 | endif() |
| 12 | |
| 13 | add_executable (ThreadPoolTests ThreadPoolTests.cpp) |
| 14 | target_link_libraries(ThreadPoolTests ${Boost_LIBRARIES}) |
