Title: [260122] trunk
Revision
260122
Author
[email protected]
Date
2020-04-15 05:28:39 -0700 (Wed, 15 Apr 2020)

Log Message

Unreviewed. Do not run gtk-doc when building with GTK4

It's not supported yet.

* Source/PlatformGTK.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (260121 => 260122)


--- trunk/ChangeLog	2020-04-15 09:49:06 UTC (rev 260121)
+++ trunk/ChangeLog	2020-04-15 12:28:39 UTC (rev 260122)
@@ -1,3 +1,11 @@
+2020-04-15  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Do not run gtk-doc when building with GTK4
+
+        It's not supported yet.
+
+        * Source/PlatformGTK.cmake:
+
 2020-04-13  Adrian Perez de Castro  <[email protected]>
 
         [GTK][CMake] Introduce an USE_GTK4 build option

Modified: trunk/Source/PlatformGTK.cmake (260121 => 260122)


--- trunk/Source/PlatformGTK.cmake	2020-04-15 09:49:06 UTC (rev 260121)
+++ trunk/Source/PlatformGTK.cmake	2020-04-15 12:28:39 UTC (rev 260122)
@@ -35,7 +35,8 @@
     # Add a default build step which check that documentation does not have any warnings
     # or errors. This is useful to prevent breaking documentation inadvertently during
     # the course of development.
-    if (DEVELOPER_MODE)
+    # FIXME: Add support for gtk-doc when building with GTK4.
+    if (DEVELOPER_MODE AND NOT USE_GTK4)
         ADD_GTKDOC_GENERATOR("docs-build-no-html.stamp" "--gtk;--skip-html")
         add_custom_target(gtkdoc-no-html ALL DEPENDS "${CMAKE_BINARY_DIR}/docs-build-no-html.stamp")
     endif ()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to