| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | 
							- project(CTKCommandLineModulesFrontendQtWebKit)
 
- #
 
- # 3rd party dependencies
 
- #
 
- #
 
- # See CTK/CMake/ctkMacroBuildLib.cmake for details
 
- #
 
- set(KIT_export_directive "CTK_CMDLINEMODULEQTWEBKIT_EXPORT")
 
- # Additional directories to include
 
- # Source files
 
- set(KIT_SRCS
 
-   ctkCmdLineModuleFrontendFactoryQtWebKit.cpp
 
-   ctkCmdLineModuleFrontendQtWebKit.cpp
 
-   ctkCmdLineModuleFrontendQtWebKit_p.h
 
- )
 
- # Headers that should run through moc
 
- set(KIT_MOC_SRCS
 
- )
 
- # UI files
 
- set(KIT_UI_FORMS
 
- )
 
- # Resources
 
- set(KIT_resources
 
-   Resources/ctkCmdLineModulesFrontendQtWebKit.qrc
 
- )
 
- # Target libraries - See CMake/ctkFunctionGetTargetLibraries.cmake
 
- # The following macro will read the target libraries from the file 'target_libraries.cmake'
 
- ctkFunctionGetTargetLibraries(KIT_target_libraries)
 
- if(CTK_QT_VERSION VERSION_GREATER "4")
 
-   list(APPEND KIT_target_libraries Qt5::WebKitWidgets)
 
- else()
 
-   set(QT_USE_QTWEBKIT 1)
 
-   include(${QT_USE_FILE})
 
- endif()
 
- 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}
 
-   )
 
- target_link_libraries(${PROJECT_NAME} ${QT_LIBRARIES})
 
- if(CTK_WRAP_PYTHONQT_LIGHT)
 
-   ctkMacroBuildLibWrapper(
 
-     TARGET ${PROJECT_NAME}
 
-     SRCS ${KIT_SRCS}
 
-     WRAPPER_LIBRARY_TYPE ${CTK_LIBRARY_MODE}
 
-     )
 
- endif()
 
- # Testing
 
- if(BUILD_TESTING)
 
- #  add_subdirectory(Testing)
 
- endif()
 
 
  |