123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- project(ctkDICOMDemoSCU)
- #
- # See CTK/CMake/ctkMacroBuildLib.cmake for details
- #
- # Source files
- set(KIT_SRCS
- ctkDICOMDemoSCUMain.cpp
- )
- # Headers that should run through moc
- set(KIT_MOC_SRCS
- )
- # UI files
- set(KIT_UI_FORMS
- )
- # Resources
- set(KIT_resources
- )
- # Target libraries - See CMake/ctkFunctionGetTargetLibraries.cmake
- # The following macro will read the target libraries from the file 'target_libraries.cmake'
- ctkFunctionGetTargetLibraries(KIT_target_libraries)
- ctkMacroBuildApp(
- NAME ${PROJECT_NAME}
- SRCS ${KIT_SRCS}
- MOC_SRCS ${KIT_MOC_SRCS}
- UI_FORMS ${KIT_UI_FORMS}
- TARGET_LIBRARIES ${KIT_target_libraries}
- RESOURCES ${KIT_resources}
- )
- # Plugins
- #add_subdirectory(Plugins)
- # Testing
- if(BUILD_TESTING)
- add_subdirectory(Testing)
- endif()
|