summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 678d17d..d77a949 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,6 +6,8 @@ message("-- Configuring libquackle")
include("${CMAKE_CURRENT_SOURCE_DIR}/Settings.cmake")
+find_package(Threads REQUIRED)
+
set(LIBQUACKLE_SOURCES
alphabetparameters.cpp
bag.cpp
@@ -72,3 +74,5 @@ set(LIBQUACKLE_HEADERS
add_library(libquackle
${LIBQUACKLE_SOURCES} ${LIBQUACKLE_HEADERS}
)
+
+target_link_libraries(libquackle Threads::Threads)