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})
7 list(APPEND DocumentationDependencies
9 "${CMAKE_SOURCE_DIR}/Source/WebKit2/UIProcess/API/gtk/docs/webkit2gtk-docs.sgml"
10 "${CMAKE_SOURCE_DIR}/Source/WebKit2/UIProcess/API/gtk/docs/webkit2gtk-sections.txt"
15 install(DIRECTORY ${CMAKE_BINARY_DIR}/Documentation/webkit2gtk/html/
16 DESTINATION ${CMAKE_INSTALL_DATADIR}/gtk-doc/html/webkit2gtk
20 macro(ADD_GTKDOC_GENERATOR _stamp_name _extra_args)
22 OUTPUT "${CMAKE_BINARY_DIR}/${_stamp_name}"
23 DEPENDS ${DocumentationDependencies}
24 COMMAND CC=${CMAKE_C_COMPILER} CFLAGS=${CMAKE_C_FLAGS} ${CMAKE_SOURCE_DIR}/Tools/gtk/generate-gtkdoc ${_extra_args}
25 COMMAND touch ${_stamp_name}
26 WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
30 add_gtkdoc_generator("docs-build.stamp" "")
32 add_custom_target(gtkdoc ALL DEPENDS "${CMAKE_BINARY_DIR}/docs-build.stamp")
34 add_custom_target(gtkdoc DEPENDS "${CMAKE_BINARY_DIR}/docs-build.stamp")
36 # Add a default build step which check that documentation does not have any warnings
37 # or errors. This is useful to prevent breaking documentation inadvertently during
38 # the course of development.
40 add_gtkdoc_generator("docs-build-no-html.stamp" "--skip-html")
41 add_custom_target(gtkdoc-no-html ALL DEPENDS "${CMAKE_BINARY_DIR}/docs-build-no-html.stamp")
45 add_custom_target(check
46 COMMAND ${TOOLS_DIR}/Scripts/run-gtk-tests
47 COMMAND ${TOOLS_DIR}/gtk/check-for-webkitdom-api-breaks
52 OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
53 DEPENDS ${TOOLS_DIR}/gtk/make-dist.py
54 DEPENDS ${TOOLS_DIR}/gtk/manifest.txt
57 COMMAND ${TOOLS_DIR}/gtk/make-dist.py
58 --source-dir=${CMAKE_SOURCE_DIR}
59 --build-dir=${CMAKE_BINARY_DIR}
60 --tarball-root=/webkitgtk-${PROJECT_VERSION}
61 -o ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
62 ${TOOLS_DIR}/gtk/manifest.txt
66 OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz
67 DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
68 COMMAND xz -f ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
71 add_custom_target(dist
72 DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz