changeset 335:f499b5085015

fix for newer versions of cmake
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Dec 2025 15:26:58 +0100
parents 6c6c0f2d6fae
children 10f8850ded86
files CMakeLists.txt
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Wed Nov 12 13:29:09 2025 +0100
+++ b/CMakeLists.txt	Tue Dec 09 15:26:58 2025 +0100
@@ -55,7 +55,13 @@
 
 if (ORTHANC_FRAMEWORK_SOURCE STREQUAL "system")
   if (ORTHANC_FRAMEWORK_USE_SHARED)
-    include(FindBoost)
+    # https://cmake.org/cmake/help/latest/policy/CMP0167.html
+    if (CMAKE_VERSION VERSION_GREATER "3.30")
+      find_package(Boost CONFIG)
+    else()
+      include(FindBoost)
+    endif()
+
     find_package(Boost COMPONENTS filesystem regex thread)
     
     if (NOT Boost_FOUND)