1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- PROJECT(org_commontk_dah_core)
- #message(QtSOAP_LIBRARY_DIRS:${QtSOAP_LIBRARY_DIRS})
- SET(PLUGIN_export_directive "org_commontk_dah_core_EXPORT")
- SET(PLUGIN_SRCS
- ctkDicomAppHostingCorePlugin.cpp
- ctkDicomAppHostingCorePlugin_p.h
- ctkDicomAppHostingTypes.cpp
- ctkDicomAppHostingTypesHelper.cpp
- ctkDicomAppInterface.h
- ctkDicomAvailableDataHelper.cpp
- ctkDicomAvailableDataHelper.h
- ctkDicomExchangeInterface.h
- ctkDicomExchangeService.cpp
- ctkDicomHostInterface.h
- ctkDicomObjectLocatorCache.cpp
- ctkExchangeSoapMessageProcessor.cpp
- ctkSimpleSoapClient.cpp
- ctkSimpleSoapServer.cpp
- ctkSoapConnectionRunnable.cpp
- ctkSoapConnectionRunnable_p.h
- ctkSoapMessageProcessor.cpp
- ctkSoapMessageProcessorList.cpp
- )
- # Files which should be processed by Qts moc
- SET(PLUGIN_MOC_SRCS
- ctkDicomAppHostingCorePlugin_p.h
- ctkSimpleSoapClient.h
- ctkSimpleSoapServer.h
- ctkSoapConnectionRunnable_p.h
- )
- # Qt Designer files which should be processed by Qts uic
- SET(PLUGIN_UI_FORMS
- )
- # QRC Files which should be compiled into the plugin
- SET(PLUGIN_resources
- Resources/dah_wsdl.qrc
- )
- #Compute the plugin dependencies
- ctkFunctionGetTargetLibraries(PLUGIN_target_libraries)
- ctkMacroBuildPlugin(
- NAME ${PROJECT_NAME}
- EXPORT_DIRECTIVE ${PLUGIN_export_directive}
- SRCS ${PLUGIN_SRCS}
- MOC_SRCS ${PLUGIN_MOC_SRCS}
- UI_FORMS ${PLUGIN_UI_FORMS}
- RESOURCES ${PLUGIN_resources}
- TARGET_LIBRARIES ${PLUGIN_target_libraries}
- )
- IF(BUILD_TESTING)
- ADD_SUBDIRECTORY(Testing)
- ENDIF()
|