| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 
							- PROJECT(CTKWidgets)
 
- #
 
- # See CTK/CMake/CTKBuildQtLibMacro.cmake for details
 
- #
 
- SET(KIT_export_directive "Q_CTK_WIDGETS_EXPORT")
 
- # Additional directories to include
 
- SET(KIT_include_directories
 
-   )
 
-   
 
- # Source files
 
- SET(KIT_SRCS
 
-   qCTKSettings.cxx
 
-   qCTKSettings.h
 
-   )
 
- # Headers that should run through moc
 
- SET(KIT_MOC_SRCS
 
-   qCTKSettings.h
 
-   )
 
- # UI files
 
- SET(KIT_UI_FORMS
 
- )
 
- # Resources
 
- SET(KIT_resources
 
- )
 
- # Additional Target libraries
 
- SET(KIT_target_libraries
 
-   CTKCore
 
-   )
 
- ctkMacroBuildQtLib(
 
-   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}
 
-   )
 
- # Plugins
 
- #ADD_SUBDIRECTORY(Plugins)
 
- # Testing
 
- IF(BUILD_TESTING)
 
-   #ADD_SUBDIRECTORY(Testing)
 
- ENDIF(BUILD_TESTING)
 
- # ADD_EXECUTABLE(MyMain dummyMain.cpp)
 
- # TARGET_LINK_LIBRARIES(MyMain ${PROJECT_NAME})
 
 
  |