comparison Resources/CMake/OrthancFrameworkConfiguration.cmake @ 4026:05a363186da6

ORTHANC_BUILDING_FRAMEWORK_LIBRARY, Orthanc::InitializeFramework()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Jun 2020 16:26:57 +0200
parents f6cb16413325
children 100fbe970762
comparison
equal deleted inserted replaced
4019:bf35c4628777 4026:05a363186da6
135 ${ORTHANC_ROOT}/Core/Enumerations.cpp 135 ${ORTHANC_ROOT}/Core/Enumerations.cpp
136 ${ORTHANC_ROOT}/Core/FileStorage/MemoryStorageArea.cpp 136 ${ORTHANC_ROOT}/Core/FileStorage/MemoryStorageArea.cpp
137 ${ORTHANC_ROOT}/Core/HttpServer/MultipartStreamReader.cpp 137 ${ORTHANC_ROOT}/Core/HttpServer/MultipartStreamReader.cpp
138 ${ORTHANC_ROOT}/Core/HttpServer/StringMatcher.cpp 138 ${ORTHANC_ROOT}/Core/HttpServer/StringMatcher.cpp
139 ${ORTHANC_ROOT}/Core/Logging.cpp 139 ${ORTHANC_ROOT}/Core/Logging.cpp
140 ${ORTHANC_ROOT}/Core/OrthancFramework.cpp
140 ${ORTHANC_ROOT}/Core/SerializationToolbox.cpp 141 ${ORTHANC_ROOT}/Core/SerializationToolbox.cpp
141 ${ORTHANC_ROOT}/Core/Toolbox.cpp 142 ${ORTHANC_ROOT}/Core/Toolbox.cpp
142 ${ORTHANC_ROOT}/Core/WebServiceParameters.cpp 143 ${ORTHANC_ROOT}/Core/WebServiceParameters.cpp
143 ) 144 )
144 145
539 -DORTHANC_MAXIMUM_TAG_LENGTH=256 540 -DORTHANC_MAXIMUM_TAG_LENGTH=256
540 -DORTHANC_VERSION="${ORTHANC_VERSION}" 541 -DORTHANC_VERSION="${ORTHANC_VERSION}"
541 ) 542 )
542 543
543 544
545 if (ORTHANC_BUILDING_FRAMEWORK_LIBRARY)
546 add_definitions(-DORTHANC_BUILDING_FRAMEWORK_LIBRARY=1)
547 else()
548 add_definitions(-DORTHANC_BUILDING_FRAMEWORK_LIBRARY=0)
549 endif()
550
551
544 if (ORTHANC_SANDBOXED) 552 if (ORTHANC_SANDBOXED)
545 add_definitions( 553 add_definitions(
546 -DORTHANC_SANDBOXED=1 554 -DORTHANC_SANDBOXED=1
547 ) 555 )
548 556