Title: [224226] trunk
Revision
224226
Author
carlo...@webkit.org
Date
2017-10-31 02:39:32 -0700 (Tue, 31 Oct 2017)

Log Message

Unreviewed. Fix GTK+/WPE make distcheck.

* CMakeLists.txt: Only include PerformanceTests directory to the build for GTK+ and WPE ports when developer
mode is enabled.

Modified Paths

Diff

Modified: trunk/CMakeLists.txt (224225 => 224226)


--- trunk/CMakeLists.txt	2017-10-31 08:39:38 UTC (rev 224225)
+++ trunk/CMakeLists.txt	2017-10-31 09:39:32 UTC (rev 224226)
@@ -177,7 +177,13 @@
     add_subdirectory(Tools)
 endif ()
 
-add_subdirectory(PerformanceTests)
+if ("${PORT}" STREQUAL "GTK" OR "${PORT}" STREQUAL "WPE")
+    if (DEVELOPER_MODE)
+        add_subdirectory(PerformanceTests)
+    endif ()
+else ()
+    add_subdirectory(PerformanceTests)
+endif ()
 
 # -----------------------------------------------------------------------------
 # Print the features list last, for maximum visibility.

Modified: trunk/ChangeLog (224225 => 224226)


--- trunk/ChangeLog	2017-10-31 08:39:38 UTC (rev 224225)
+++ trunk/ChangeLog	2017-10-31 09:39:32 UTC (rev 224226)
@@ -1,3 +1,10 @@
+2017-10-31  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed. Fix GTK+/WPE make distcheck.
+
+        * CMakeLists.txt: Only include PerformanceTests directory to the build for GTK+ and WPE ports when developer
+        mode is enabled.
+
 2017-10-26  Adrian Perez de Castro  <ape...@igalia.com>
 
         [WPE] Use proper shared object versioning for libWPEWebKit.so
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to