From fd83c82f211f5a30db603edd69943f475ca1813f Mon Sep 17 00:00:00 2001 From: William Johnson Date: Sun, 5 May 2024 08:52:33 -0700 Subject: [PATCH] Fix requireing Boost::process in wrong place --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 78a81070..fbda059b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -236,7 +236,7 @@ if( InterSpec_FETCH_DEPENDENCIES ) else( InterSpec_FETCH_DEPENDENCIES ) set(Boost_USE_STATIC_LIBS ON) set(Boost_USE_MULTITHREADED ON) - find_package(Boost 1.68 REQUIRED COMPONENTS thread date_time system filesystem program_options regex random process ) + find_package(Boost 1.68 REQUIRED COMPONENTS thread date_time system filesystem program_options regex random ) if( USE_REL_ACT_TOOL ) find_package( Eigen3 3.4 REQUIRED NO_MODULE )