comparison OrthancServer/CMakeLists.txt @ 5809:023a99146dd0 attach-custom-data

merged find-refactoring -> attach-custom-data
author Alain Mazy <am@orthanc.team>
date Tue, 24 Sep 2024 12:53:43 +0200
parents 8279eaab0d1d e2771185dad6
children a451777236fb
comparison
equal deleted inserted replaced
5808:63c025cf6958 5809:023a99146dd0
89 ##################################################################### 89 #####################################################################
90 90
91 set(ORTHANC_SERVER_SOURCES 91 set(ORTHANC_SERVER_SOURCES
92 ${CMAKE_SOURCE_DIR}/Sources/Database/BaseDatabaseWrapper.cpp 92 ${CMAKE_SOURCE_DIR}/Sources/Database/BaseDatabaseWrapper.cpp
93 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/DatabaseLookup.cpp 93 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/DatabaseLookup.cpp
94 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/GenericFind.cpp
94 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/ICreateInstance.cpp 95 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/ICreateInstance.cpp
95 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/IGetChildrenMetadata.cpp 96 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/IGetChildrenMetadata.cpp
96 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/ILookupResourceAndParent.cpp 97 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/ILookupResourceAndParent.cpp
97 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/ILookupResources.cpp 98 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/ILookupResources.cpp
98 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/SetOfResources.cpp 99 ${CMAKE_SOURCE_DIR}/Sources/Database/Compatibility/SetOfResources.cpp
100 ${CMAKE_SOURCE_DIR}/Sources/Database/FindRequest.cpp
101 ${CMAKE_SOURCE_DIR}/Sources/Database/FindResponse.cpp
102 ${CMAKE_SOURCE_DIR}/Sources/Database/MainDicomTagsRegistry.cpp
103 ${CMAKE_SOURCE_DIR}/Sources/Database/OrthancIdentifiers.cpp
99 ${CMAKE_SOURCE_DIR}/Sources/Database/ResourcesContent.cpp 104 ${CMAKE_SOURCE_DIR}/Sources/Database/ResourcesContent.cpp
100 ${CMAKE_SOURCE_DIR}/Sources/Database/SQLiteDatabaseWrapper.cpp 105 ${CMAKE_SOURCE_DIR}/Sources/Database/SQLiteDatabaseWrapper.cpp
101 ${CMAKE_SOURCE_DIR}/Sources/Database/StatelessDatabaseOperations.cpp 106 ${CMAKE_SOURCE_DIR}/Sources/Database/StatelessDatabaseOperations.cpp
102 ${CMAKE_SOURCE_DIR}/Sources/Database/VoidDatabaseListener.cpp 107 ${CMAKE_SOURCE_DIR}/Sources/Database/VoidDatabaseListener.cpp
103 ${CMAKE_SOURCE_DIR}/Sources/DicomInstanceOrigin.cpp 108 ${CMAKE_SOURCE_DIR}/Sources/DicomInstanceOrigin.cpp
118 ${CMAKE_SOURCE_DIR}/Sources/OrthancRestApi/OrthancRestModalities.cpp 123 ${CMAKE_SOURCE_DIR}/Sources/OrthancRestApi/OrthancRestModalities.cpp
119 ${CMAKE_SOURCE_DIR}/Sources/OrthancRestApi/OrthancRestResources.cpp 124 ${CMAKE_SOURCE_DIR}/Sources/OrthancRestApi/OrthancRestResources.cpp
120 ${CMAKE_SOURCE_DIR}/Sources/OrthancRestApi/OrthancRestSystem.cpp 125 ${CMAKE_SOURCE_DIR}/Sources/OrthancRestApi/OrthancRestSystem.cpp
121 ${CMAKE_SOURCE_DIR}/Sources/OrthancWebDav.cpp 126 ${CMAKE_SOURCE_DIR}/Sources/OrthancWebDav.cpp
122 ${CMAKE_SOURCE_DIR}/Sources/QueryRetrieveHandler.cpp 127 ${CMAKE_SOURCE_DIR}/Sources/QueryRetrieveHandler.cpp
128 ${CMAKE_SOURCE_DIR}/Sources/ResourceFinder.cpp
123 ${CMAKE_SOURCE_DIR}/Sources/Search/DatabaseConstraint.cpp 129 ${CMAKE_SOURCE_DIR}/Sources/Search/DatabaseConstraint.cpp
130 ${CMAKE_SOURCE_DIR}/Sources/Search/DatabaseConstraints.cpp
124 ${CMAKE_SOURCE_DIR}/Sources/Search/DatabaseLookup.cpp 131 ${CMAKE_SOURCE_DIR}/Sources/Search/DatabaseLookup.cpp
125 ${CMAKE_SOURCE_DIR}/Sources/Search/DicomTagConstraint.cpp 132 ${CMAKE_SOURCE_DIR}/Sources/Search/DicomTagConstraint.cpp
126 ${CMAKE_SOURCE_DIR}/Sources/Search/HierarchicalMatcher.cpp 133 ${CMAKE_SOURCE_DIR}/Sources/Search/HierarchicalMatcher.cpp
127 ${CMAKE_SOURCE_DIR}/Sources/Search/ISqlLookupFormatter.cpp 134 ${CMAKE_SOURCE_DIR}/Sources/Search/ISqlLookupFormatter.cpp
128 ${CMAKE_SOURCE_DIR}/Sources/ServerContext.cpp 135 ${CMAKE_SOURCE_DIR}/Sources/ServerContext.cpp
326 endif() 333 endif()
327 334
328 335
329 add_definitions( 336 add_definitions(
330 -DORTHANC_BUILD_UNIT_TESTS=1 337 -DORTHANC_BUILD_UNIT_TESTS=1
331 -DORTHANC_BUILDING_SERVER_LIBRARY=1
332 338
333 # Macros for the plugins 339 # Macros for the plugins
334 -DHAS_ORTHANC_EXCEPTION=0 340 -DHAS_ORTHANC_EXCEPTION=0
335 ) 341 )
336 342