| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | project(ctkCommandLineModuleExplorer)## See CTK/CMake/ctkMacroBuildApp.cmake for details#set(KIT_SRCS  ctkCommandLineModuleExplorerMain.cpp  ctkCLModuleExplorerMainWindow.h  ctkCLModuleExplorerMainWindow.cpp)# Headers that should run through mocset(KIT_MOC_SRCS  ctkCLModuleExplorerMainWindow.h)# UI filesset(KIT_UI_FORMS  ctkCLModuleExplorerMainWindow.ui)# Resourcesset(KIT_resources  resources/ctkCLModuleExplorer.qrc)set(QT_USE_QTUITOOLS 1)include(${QT_USE_FILE})# 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}  )target_link_libraries(${PROJECT_NAME} ${QT_LIBRARIES})# Testingif(BUILD_TESTING)#   add_subdirectory(Testing)endif()
 |