| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | PROJECT(CTKScriptingPythonWidgets)## 3rd party dependencies### See CTK/CMake/ctkMacroBuildLib.cmake for details#SET(KIT_export_directive "CTK_SCRIPTING_PYTHON_WIDGETS_EXPORT")# Additional directories to includeSET(KIT_include_directories  )  # Source filesSET(KIT_SRCS  ctkPythonShell.cpp  ctkPythonShell.h  )# Headers that should run through mocSET(KIT_MOC_SRCS  ctkPythonShell.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}  )# Plugins#ADD_SUBDIRECTORY(Plugins)# TestingIF(BUILD_TESTING)  ADD_SUBDIRECTORY(Testing)ENDIF(BUILD_TESTING)
 |