From 0afae7e261b1bbde07aa8f3e71873e71bee37719 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Mon, 16 Jan 2023 08:29:48 -0800 Subject: [PATCH] Remove header-only boost modules from cmake find_package list. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73f5f1ce5b..a6fdf8922c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -546,7 +546,7 @@ set (Boost_FIND_QUIETLY ON) if (NOT DEFINED ${BOOST_ROOT}) set(BOOST_ROOT $ENV{BOOST_ROOT}) endif() -find_package (Boost 1.67.0 COMPONENTS algorithm asio date_time filesystem iostreams locale process program_options property_tree regex system) +find_package (Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex system) if (Boost_FOUND) include_directories(${Boost_INCLUDE_DIRS})