From 3582dbcec5c19d92553717d6ffd4cfade9ba6972 Mon Sep 17 00:00:00 2001 From: Sygmei <3835355+Sygmei@users.noreply.github.com> Date: Sun, 3 Jul 2022 16:07:54 +0200 Subject: [PATCH] [fix] link against Threads lib --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d9cb18..c468950 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ set(TILED_INTEGRATION_SOURCES add_executable(tiled_integration ${TILED_INTEGRATION_HEADERS} ${TILED_INTEGRATION_SOURCES}) +find_package(Threads REQUIRED) target_link_libraries(tiled_integration Threads::Threads) target_link_libraries(tiled_integration nlohmann)