| 1234567891011121314151617181920212223242526272829303132333435363738 | 
							- PROJECT(org_commontk_dicom_wg23_host)
 
- SET(PLUGIN_export_directive "org_commontk_dicom_wg23_host_EXPORT")
 
- SET(PLUGIN_SRCS
 
-   ctkDicomHostServer.cpp
 
-   ctkDicomHostServerPrivate.cpp
 
-   ctkDicomWG23HostPlugin.cpp
 
-   ctkDicomAbstractHost.cpp
 
- )
 
- # Files which should be processed by Qts moc
 
- SET(PLUGIN_MOC_SRCS
 
-   ctkDicomHostServerPrivate.h
 
-   ctkDicomWG23HostPlugin_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}
 
-   SRCS ${PLUGIN_SRCS}
 
-   MOC_SRCS ${PLUGIN_MOC_SRCS}
 
-   UI_FORMS ${PLUGIN_UI_FORMS}
 
-   RESOURCES ${PLUGIN_resources}
 
-   TARGET_LIBRARIES ${PLUGIN_target_libraries}
 
- )
 
 
  |