changeset 347:8b1a8e10a757

use SDK 1.13.0 by default
author Alain Mazy <am@orthanc.team>
date Thu, 20 Aug 2026 10:55:58 +0200
parents f2ae8fe9933c
children c2be5b68dbbe
files CMakeLists.txt
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Thu Aug 20 10:54:14 2026 +0200
+++ b/CMakeLists.txt	Thu Aug 20 10:55:58 2026 +0200
@@ -40,7 +40,7 @@
 
 # Advanced parameters to fine-tune linking against system libraries
 set(USE_SYSTEM_ORTHANC_SDK ON CACHE BOOL "Use the system version of the Orthanc plugin SDK")
-set(ORTHANC_SDK_VERSION "1.12.9" CACHE STRING "Version of the Orthanc plugin SDK to use, if not using the system version (can be \"1.11.3\", \"1.12.4\", \"1.12.9\",or \"framework\")")
+set(ORTHANC_SDK_VERSION "1.13.0" CACHE STRING "Version of the Orthanc plugin SDK to use, if not using the system version (can be \"1.12.4\", \"1.12.9\", \"1.13.0\", or \"framework\")")
 
 # Download and setup the Orthanc framework
 include(${CMAKE_SOURCE_DIR}/Resources/Orthanc/CMake/DownloadOrthancFramework.cmake)
@@ -90,12 +90,12 @@
 
 # Check that the Orthanc SDK headers are available
 if (STATIC_BUILD OR NOT USE_SYSTEM_ORTHANC_SDK)
-  if (ORTHANC_SDK_VERSION STREQUAL "1.11.3")
-    include_directories(${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-1.11.3)
-  elseif (ORTHANC_SDK_VERSION STREQUAL "1.12.4")
+  if (ORTHANC_SDK_VERSION STREQUAL "1.12.4")
     include_directories(${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-1.12.4)
   elseif (ORTHANC_SDK_VERSION STREQUAL "1.12.9")
     include_directories(${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-1.12.9)
+  elseif (ORTHANC_SDK_VERSION STREQUAL "1.13.0")
+    include_directories(${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-1.13.0)
   elseif (ORTHANC_SDK_VERSION STREQUAL "framework")
     include_directories(${ORTHANC_FRAMEWORK_ROOT}/../../OrthancServer/Plugins/Include)
   else()