From 86aa6cb13e001fb9675bb106e60a4b98bce9ea88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20L=C3=BCke?= Date: Mon, 30 Dec 2024 08:42:47 +0100 Subject: [PATCH] require boost --- src/tools/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index 292c77b..c7605fe 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -22,7 +22,7 @@ add_mnode_dev_executable(mesy_nng_push_pull_main) add_mnode_dev_executable(mesy_nng_pub_producer) add_mnode_dev_executable(mesy_nng_sub_consumer) -find_package(Boost CONFIG COMPONENTS filesystem system) +find_package(Boost CONFIG COMPONENTS filesystem system REQUIRED) if (Boost_FOUND) add_mnode_dev_executable(mana_auto_replay) target_link_libraries(mana_auto_replay PRIVATE nlohmann_json::nlohmann_json mnode::resources Boost::filesystem Boost::system)