From a4ffa1d164138a4bf7d603ce7a810c5e9363506f Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 5 Jan 2024 09:30:17 -0500 Subject: [PATCH] fix issue with local asio::asio not being properly used when compiling libcommon; --- src/common/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 410af47a..76233b76 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -103,4 +103,5 @@ file(GLOB common_INCLUDE project(common) add_library(common STATIC ${common_SRC} ${common_INCLUDE}) +target_link_libraries(common PRIVATE asio::asio Threads::Threads util) target_include_directories(common PRIVATE src src/common)