changeset 83:c124644d2e33

fix build with recent versions of cmake
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Dec 2025 15:01:03 +0100
parents 63b171c5cbff
children bd6ca2211085
files CMakeLists.txt
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Wed Nov 12 13:27:30 2025 +0100
+++ b/CMakeLists.txt	Tue Dec 09 15:01:03 2025 +0100
@@ -86,7 +86,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 system thread)
     
     if (NOT Boost_FOUND)