comparison Resources/CMake/OrthancFrameworkParameters.cmake @ 2791:d015fa861e3c

selective disabling of modules in the Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 26 Jul 2018 21:18:05 +0200
parents 8d8d2dbeef11
children afb581263e1d
comparison
equal deleted inserted replaced
2790:c7313e1f7644 2791:d015fa861e3c
103 set(HAS_EMBEDDED_RESOURCES OFF CACHE INTERNAL 103 set(HAS_EMBEDDED_RESOURCES OFF CACHE INTERNAL
104 "Whether resources are auto-generated using EmbedResources.py") 104 "Whether resources are auto-generated using EmbedResources.py")
105 105
106 set(ORTHANC_SANDBOXED OFF CACHE INTERNAL 106 set(ORTHANC_SANDBOXED OFF CACHE INTERNAL
107 "Whether Orthanc runs inside a sandboxed environment (such as Google NaCl or WebAssembly)") 107 "Whether Orthanc runs inside a sandboxed environment (such as Google NaCl or WebAssembly)")
108
109
110 #
111 # These options can be used to turn off some modules of the Orthanc
112 # framework, in order to speed up the compilation time of third-party
113 # projects.
114 #
115
116 set(ENABLE_MODULE_IMAGES ON CACHE INTERNAL "Enable module for image processing")
117 set(ENABLE_MODULE_JOBS ON CACHE INTERNAL "Enable module for jobs")
118 set(ENABLE_MODULE_DICOM ON CACHE INTERNAL "Enable module for DICOM handling")