comparison MySQL/CMakeLists.txt @ 489:e8b4bb6a33e7

introduction of ORTHANC_SDK_COMPATIBLE_VERSIONS in CMake
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 22 Mar 2024 14:27:36 +0100
parents bba27bbef7e0
children a164d8aebe0e
comparison
equal deleted inserted replaced
482:827e438439c4 489:e8b4bb6a33e7
21 cmake_minimum_required(VERSION 2.8) 21 cmake_minimum_required(VERSION 2.8)
22 project(OrthancMySQL) 22 project(OrthancMySQL)
23 23
24 set(ORTHANC_PLUGIN_VERSION "mainline") 24 set(ORTHANC_PLUGIN_VERSION "mainline")
25 25
26 # This is the preferred version of the Orthanc SDK for this plugin
26 set(ORTHANC_SDK_DEFAULT_VERSION "1.12.0") 27 set(ORTHANC_SDK_DEFAULT_VERSION "1.12.0")
27 28
29 # This is the list of the versions of the Orthanc SDK against which
30 # this plugin will compile
31 set(ORTHANC_SDK_COMPATIBLE_VERSIONS "0.9.5" "1.4.0" "1.5.2" "1.5.4" "1.9.2" "1.12.0" "1.12.3")
32
33 # This is the minimal version of the Orthanc runtime that will provide
34 # best performance. If the version of the Orthanc runtime is below
35 # this minimal version, a warning message will be printed (but the
36 # plugin will still start).
28 set(ORTHANC_OPTIMAL_VERSION_MAJOR 1) 37 set(ORTHANC_OPTIMAL_VERSION_MAJOR 1)
29 set(ORTHANC_OPTIMAL_VERSION_MINOR 12) 38 set(ORTHANC_OPTIMAL_VERSION_MINOR 12)
30 set(ORTHANC_OPTIMAL_VERSION_REVISION 0) 39 set(ORTHANC_OPTIMAL_VERSION_REVISION 0)
31 40
32 if (ORTHANC_PLUGIN_VERSION STREQUAL "mainline") 41 if (ORTHANC_PLUGIN_VERSION STREQUAL "mainline")