1 add_subdirectory(${WEBCORE_DIR}/platform/gtk/po)
3 # This allows exposing a 'gir' target which builds all GObject introspection files.
4 add_custom_target(gir ALL DEPENDS ${GObjectIntrospectionTargets})
6 set(DocumentationDependencies
7 "${CMAKE_SOURCE_DIR}/Source/WebKit/gtk/docs/webkitenvironment.xml"
11 list(APPEND DocumentationDependencies
13 "${CMAKE_SOURCE_DIR}/Source/WebKit/gtk/docs/webkitgtk-docs.sgml"
14 "${CMAKE_SOURCE_DIR}/Source/WebKit/gtk/docs/webkitgtk-sections.txt"
16 install(DIRECTORY ${CMAKE_BINARY_DIR}/Documentation/webkitgtk/html/
17 DESTINATION ${CMAKE_INSTALL_DATADIR}/gtk-doc/html/webkitgtk
22 list(APPEND DocumentationDependencies
24 "${CMAKE_SOURCE_DIR}/Source/WebKit2/UIProcess/API/gtk/docs/webkit2gtk-docs.sgml"
25 "${CMAKE_SOURCE_DIR}/Source/WebKit2/UIProcess/API/gtk/docs/webkit2gtk-sections.txt"
27 install(DIRECTORY ${CMAKE_BINARY_DIR}/Documentation/webkit2gtk/html/
28 DESTINATION ${CMAKE_INSTALL_DATADIR}/gtk-doc/html/webkit2gtk
32 macro(ADD_GTKDOC_GENERATOR _stamp_name _extra_args)
34 OUTPUT "${CMAKE_BINARY_DIR}/${_stamp_name}"
35 DEPENDS ${DocumentationDependencies}
36 COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=${CMAKE_C_FLAGS} ${CMAKE_SOURCE_DIR}/Tools/gtk/generate-gtkdoc ${_extra_args}
37 COMMAND touch ${_stamp_name}
38 WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
42 add_gtkdoc_generator("docs-build-no-html.stamp" "--skip-html")
43 add_custom_target(gtkdoc-no-html ALL
44 DEPENDS "${CMAKE_BINARY_DIR}/docs-build-no-html.stamp"
47 add_gtkdoc_generator("docs-build.stamp" "")
48 add_custom_target(gtkdoc
49 DEPENDS "${CMAKE_BINARY_DIR}/docs-build.stamp"
52 add_custom_target(check
53 COMMAND ${TOOLS_DIR}/Scripts/run-gtk-tests
54 COMMAND ${TOOLS_DIR}/gtk/check-for-webkitdom-api-breaks
57 if (ENABLE_WEBKIT AND ENABLE_WEBKIT2)
59 OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
60 DEPENDS ${TOOLS_DIR}/gtk/make-dist.py
61 DEPENDS ${TOOLS_DIR}/gtk/manifest.txt
65 COMMAND ${TOOLS_DIR}/gtk/make-dist.py
66 --source-dir=${CMAKE_SOURCE_DIR}
67 --build-dir=${CMAKE_BINARY_DIR}
68 --tarball-root=/webkitgtk-${PROJECT_VERSION}
69 -o ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
70 ${TOOLS_DIR}/gtk/manifest.txt
74 OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz
75 DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
76 COMMAND xz -f ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
79 add_custom_target(dist
80 DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz