From d6ef773ff6c6f28ea91790b1de2a4233b4d78031 Mon Sep 17 00:00:00 2001 From: Meyer Zinn <6132034+meyerzinn@users.noreply.github.com> Date: Tue, 2 Apr 2024 17:09:27 -0500 Subject: [PATCH] change minimum required boost version (#45) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5343e9a..70349fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,7 +58,7 @@ find_package(MPI REQUIRED) include_directories(SYSTEM ${MPI_INCLUDE_PATH}) # Boost Dependency -find_package(Boost 1.74 COMPONENTS program_options REQUIRED) +find_package(Boost 1.72 COMPONENTS program_options REQUIRED) set(BUILD_TESTING_SAVED "${BUILD_TESTING}") set(BUILD_TESTING OFF)