We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3d2c6e9 + fe3f648 commit f94ea53Copy full SHA for f94ea53
CMakeLists.txt
@@ -25,6 +25,7 @@ option(BUILD_SHARED_LIBS "Build shared libraries by default" YES)
25
26
find_package(dispatch QUIET)
27
find_package(Foundation QUIET)
28
+find_package(Threads QUIET)
29
find_package(SQLite3 REQUIRED)
30
31
add_subdirectory(Sources)
Sources/TSCUtility/CMakeLists.txt
@@ -46,7 +46,10 @@ add_library(TSCUtility
46
target_link_libraries(TSCUtility PUBLIC
47
TSCBasic)
48
target_link_libraries(TSCUtility PRIVATE
49
- TSCclibc)
+ TSCclibc
50
+ ${CMAKE_DL_LIBS}
51
+ Threads::Threads)
52
+
53
if(NOT CMAKE_SYSTEM_NAME STREQUAL Darwin)
54
55
SQLite::SQLite3)
0 commit comments