comparison Resources/CMake/OrthancFrameworkParameters.cmake @ 3160:fc9a4a2dad63

merge
author Alain Mazy <alain@mazy.be>
date Thu, 24 Jan 2019 10:55:19 +0100
parents 6150748578f6
children 6f5e38ec1f12
comparison
equal deleted inserted replaced
3159:4cfed5c2eacd 3160:fc9a4a2dad63
15 set(ORTHANC_DATABASE_VERSION 6) 15 set(ORTHANC_DATABASE_VERSION 6)
16 16
17 # Version of the Orthanc API, can be retrieved from "/system" URI in 17 # Version of the Orthanc API, can be retrieved from "/system" URI in
18 # order to check whether new URI endpoints are available even if using 18 # order to check whether new URI endpoints are available even if using
19 # the mainline version of Orthanc 19 # the mainline version of Orthanc
20 set(ORTHANC_API_VERSION "1.2") 20 set(ORTHANC_API_VERSION "1.3")
21 21
22 22
23 ##################################################################### 23 #####################################################################
24 ## CMake parameters tunable by the user 24 ## CMake parameters tunable by the user
25 ##################################################################### 25 #####################################################################
28 set(ALLOW_DOWNLOADS OFF CACHE BOOL "Allow CMake to download packages") 28 set(ALLOW_DOWNLOADS OFF CACHE BOOL "Allow CMake to download packages")
29 set(STATIC_BUILD OFF CACHE BOOL "Static build of the third-party libraries (necessary for Windows)") 29 set(STATIC_BUILD OFF CACHE BOOL "Static build of the third-party libraries (necessary for Windows)")
30 set(STANDALONE_BUILD ON CACHE BOOL "Standalone build (all the resources are embedded, necessary for releases)") 30 set(STANDALONE_BUILD ON CACHE BOOL "Standalone build (all the resources are embedded, necessary for releases)")
31 31
32 # Generic parameters of the build 32 # Generic parameters of the build
33 set(ENABLE_CIVETWEB OFF CACHE BOOL "Use Civetweb instead of Mongoose (experimental)") 33 set(ENABLE_CIVETWEB ON CACHE BOOL "Use Civetweb instead of Mongoose (Mongoose was the default embedded HTTP server in Orthanc <= 1.5.1)")
34 set(ENABLE_PKCS11 OFF CACHE BOOL "Enable PKCS#11 for HTTPS client authentication using hardware security modules and smart cards") 34 set(ENABLE_PKCS11 OFF CACHE BOOL "Enable PKCS#11 for HTTPS client authentication using hardware security modules and smart cards")
35 set(ENABLE_PROFILING OFF CACHE BOOL "Whether to enable the generation of profiling information with gprof") 35 set(ENABLE_PROFILING OFF CACHE BOOL "Whether to enable the generation of profiling information with gprof")
36 set(ENABLE_SSL ON CACHE BOOL "Include support for SSL") 36 set(ENABLE_SSL ON CACHE BOOL "Include support for SSL")
37 set(ENABLE_LUA_MODULES OFF CACHE BOOL "Enable support for loading external Lua modules (only meaningful if using static version of the Lua engine)") 37 set(ENABLE_LUA_MODULES OFF CACHE BOOL "Enable support for loading external Lua modules (only meaningful if using static version of the Lua engine)")
38 38