| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 | PROJECT(CTKModuleDescription)## 3rd party dependencies### See CTK/CMake/ctkMacroBuildLib.cmake for details#SET(KIT_export_directive "CTK_MODULDESC_EXPORT")# Additional directories to include  # Source filesSET(KIT_SRCS  ctkModuleDescription.h  ctkModuleDescription.cpp  ctkModuleParameter.h  ctkModuleParameter.cpp  ctkModuleParameterGroup.h  ctkModuleParameterGroup.cpp  ctkModuleDescriptionReaderInterface.cpp  ctkModuleDescriptionReaderInterface.h  ctkModuleDescriptionReader.h  ctkModuleDescriptionReader.cpp  ctkModuleDescriptionConverterInterface.h  ctkModuleDescriptionConverter.h  ctkModuleDescriptionConverter.cpp  ctkModuleDescriptionExecutionInterface.h  ctkModuleDescriptionExecution.h  ctkModuleDescriptionExecution.cpp  )# Headers that should run through mocSET(KIT_MOC_SRCS  ctkModuleDescriptionReaderInterface.h  ctkModuleDescriptionReader.h  ctkModuleDescriptionConverterInterface.h  ctkModuleDescriptionConverter.h  ctkModuleDescriptionExecutionInterface.h  ctkModuleDescriptionExecution.h)# UI filesSET(KIT_UI_FORMS)# ResourcesSET(KIT_resources)# Target libraries - See CMake/ctkMacroGetTargetLibraries.cmake# The following macro will read the target libraries from the file 'target_libraries.cmake'ctkMacroGetTargetLibraries(KIT_target_libraries)ctkMacroBuildLib(  NAME ${PROJECT_NAME}  EXPORT_DIRECTIVE ${KIT_export_directive}  INCLUDE_DIRECTORIES ${KIT_include_directories}  SRCS ${KIT_SRCS}  MOC_SRCS ${KIT_MOC_SRCS}  UI_FORMS ${KIT_UI_FORMS}  TARGET_LIBRARIES ${KIT_target_libraries}  RESOURCES ${KIT_resources}  LIBRARY_TYPE ${CTK_LIBRARY_MODE}  )# TestingIF(BUILD_TESTING)  ADD_SUBDIRECTORY(Testing)ENDIF(BUILD_TESTING)
 |