aboutsummaryrefslogtreecommitdiff
path: root/source/lib/control
diff options
context:
space:
mode:
Diffstat (limited to 'source/lib/control')
-rw-r--r--source/lib/control/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/lib/control/CMakeLists.txt b/source/lib/control/CMakeLists.txt
index ce1a9da..2fce909 100644
--- a/source/lib/control/CMakeLists.txt
+++ b/source/lib/control/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_path(GET CMAKE_CURRENT_SOURCE_DIR STEM LIB_NAME)
file(GLOB_RECURSE LIB_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.hpp")
file(GLOB_RECURSE LIB_SOURCES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.cpp")
-find_package("asio" REQUIRED)
+find_package("Boost" REQUIRED COMPONENTS "headers")
find_package("spdlog" REQUIRED)
add_library("wanda-${LIB_NAME}"
@@ -33,6 +33,7 @@ target_link_libraries("wanda-${LIB_NAME}" PUBLIC
"wanda::proto"
"wanda::system"
+ "Boost::headers"
"spdlog::spdlog_header_only"
)