From 179a49684ae83203df655f0e9ac70035c79e7225 Mon Sep 17 00:00:00 2001 From: Antonio Sanchez Date: Fri, 28 Feb 2025 07:33:26 -0800 Subject: [PATCH] Fix CMake BOOST warning --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 3a67ab1d0..813cc531c 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -384,7 +384,7 @@ if(EIGEN_TEST_EIGEN2) endif() # boost MP unit test -find_package(Boost 1.53.0) +find_package(Boost 1.53.0 CONFIG) if(Boost_FOUND) include_directories(${Boost_INCLUDE_DIRS}) ei_add_test(boostmultiprec "" "${Boost_LIBRARIES}")