We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2375e8 commit 6781d42Copy full SHA for 6781d42
CMakeLists.txt
@@ -9,9 +9,11 @@ target_include_directories(threadpool PUBLIC include)
9
target_include_directories(threadpool PRIVATE internal)
10
11
add_subdirectory(third_party)
12
-
13
target_link_libraries(threadpool PRIVATE threadpark)
14
+find_package(Threads REQUIRED)
15
+target_link_libraries(threadpool PRIVATE Threads::Threads)
16
+
17
option(PI_THREADPOOL_BUILD_TESTS "Build tests" OFF)
18
19
enable_testing()
0 commit comments