comparison OrthancServer/Plugins/Samples/DelayedDeletion/CMakeLists.txt @ 5031:eec3e4a91663 delayed-deletion

DelayedDeletion plugin: first version
author Alain Mazy <am@osimis.io>
date Tue, 21 Jun 2022 17:29:36 +0200
parents c2ebc47f4f18
children 191e86305f19
comparison
equal deleted inserted replaced
5030:d6ed4c73c719 5031:eec3e4a91663
54 add_definitions( 54 add_definitions(
55 -DHAS_ORTHANC_EXCEPTION=1 55 -DHAS_ORTHANC_EXCEPTION=1
56 -DORTHANC_PLUGIN_NAME="${PLUGIN_NAME}" 56 -DORTHANC_PLUGIN_NAME="${PLUGIN_NAME}"
57 -DORTHANC_PLUGIN_VERSION="${PLUGIN_VERSION}" 57 -DORTHANC_PLUGIN_VERSION="${PLUGIN_VERSION}"
58 -DORTHANC_ENABLE_LOGGING=1 58 -DORTHANC_ENABLE_LOGGING=1
59 -DORTHANC_ENABLE_LOGGING_PLUGIN=1
60 -DORTHANC_ENABLE_PLUGINS=1 59 -DORTHANC_ENABLE_PLUGINS=1
61 -DORTHANC_BUILDING_SERVER_LIBRARY=0 60 -DORTHANC_BUILDING_SERVER_LIBRARY=0
62 ) 61 )
63 62
64 include_directories( 63 include_directories(
69 add_library(DelayedDeletion SHARED 68 add_library(DelayedDeletion SHARED
70 ${ADDITIONAL_RESOURCES} 69 ${ADDITIONAL_RESOURCES}
71 ${AUTOGENERATED_SOURCES} 70 ${AUTOGENERATED_SOURCES}
72 ${ORTHANC_CORE_SOURCES} 71 ${ORTHANC_CORE_SOURCES}
73 ${CMAKE_SOURCE_DIR}/../../../Plugins/Samples/DelayedDeletion/Plugin.cpp 72 ${CMAKE_SOURCE_DIR}/../../../Plugins/Samples/DelayedDeletion/Plugin.cpp
74 ${CMAKE_SOURCE_DIR}/../../../Plugins/Samples/DelayedDeletion/LargeDeleteJob.cpp
75 ${CMAKE_SOURCE_DIR}/../../../Plugins/Samples/DelayedDeletion/PendingDeletionsDatabase.cpp 73 ${CMAKE_SOURCE_DIR}/../../../Plugins/Samples/DelayedDeletion/PendingDeletionsDatabase.cpp
76 ${CMAKE_SOURCE_DIR}/../../../Plugins/Engine/PluginsEnumerations.cpp 74 ${CMAKE_SOURCE_DIR}/../../../Plugins/Engine/PluginsEnumerations.cpp
77 ${CMAKE_SOURCE_DIR}/../../../Plugins/Samples/Common/OrthancPluginCppWrapper.cpp 75 ${CMAKE_SOURCE_DIR}/../../../Plugins/Samples/Common/OrthancPluginCppWrapper.cpp
78 Plugin.cpp 76 Plugin.cpp
79 ) 77 )