From 80346395680f3a7f78c26fcedac4b8cb653b681a Mon Sep 17 00:00:00 2001 From: MALASHKIN Andrei Date: Fri, 26 Apr 2024 08:58:16 +0200 Subject: [PATCH] require boost json component as needed for the assigner compilation --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f4e788a..c2393f16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,6 +51,8 @@ set(RSLANG_BUILD_TOOLS "" CACHE STRING "Rust tools to build (see build.too include(TargetArchitecture) include(CircuitCompile) +find_package(Boost REQUIRED COMPONENTS json) + if(BUILD_WITH_BOOST_STATIC_LIBS) set(Boost_USE_STATIC_LIBS TRUE) else()