123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- PROJECT(org_commontk_dicom_wg23_core)
- FIND_PACKAGE(QtSOAP)
- IF(NOT QtSOAP_FOUND)
- MESSAGE(FATAL_ERROR "error: QtSOAP package is required to build ${PROJECT_NAME}" )
- ENDIF()
- # TODO: Fix this after discussing include dependencies with Jc
- SET(CTK_BASE_INCLUDE_DIRS ${CTK_BASE_INCLUDE_DIRS} ${QTSOAP_INCLUDE_DIR} CACHE INTERNAL "CTK includes" FORCE)
- SET(PLUGIN_export_directive "org_commontk_dicom_wg23_core_EXPORT")
- # Additional directories to include
- SET(PLUGIN_include_directories
- )
- SET(PLUGIN_SRCS
- ctkDicomWG23CorePlugin.cpp
- ctkSimpleSoapServer.cpp
- ctkSoapConnectionRunnable.cpp
- )
- # Files which should be processed by Qts moc
- SET(PLUGIN_MOC_SRCS
- ctkDicomAppInterface.h
- ctkDicomHostInterface.h
- ctkDicomWG23CorePlugin_p.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
- )
- #Compute the plugin dependencies
- ctkMacroGetTargetLibraries(PLUGIN_target_libraries)
- ctkMacroBuildPlugin(
- NAME ${PROJECT_NAME}
- EXPORT_DIRECTIVE ${PLUGIN_export_directive}
- INCLUDE_DIRECTORIES ${PLUGIN_include_directories}
- SRCS ${PLUGIN_SRCS}
- MOC_SRCS ${PLUGIN_MOC_SRCS}
- UI_FORMS ${PLUGIN_UI_FORMS}
- RESOURCES ${PLUGIN_resources}
- TARGET_LIBRARIES ${PLUGIN_target_libraries}
- )
|