| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | PROJECT(CTKScriptingPythonWidgets)## 3rd party dependencies### See CTK/CMake/ctkMacroBuildLib.cmake for details#SET(KIT_export_directive "CTK_SCRIPTING_PYTHON_WIDGETS_EXPORT")  # 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}  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)
 |