Title: [190321] trunk
Revision
190321
Author
mcatanz...@igalia.com
Date
2015-09-29 12:18:26 -0700 (Tue, 29 Sep 2015)

Log Message

[GTK][CMake] Warning about CMP0058
https://bugs.webkit.org/show_bug.cgi?id=149627

Reviewed by Martin Robinson.

Opt-in to the new behavior for CMP0058.

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/CMakeLists.txt (190320 => 190321)


--- trunk/CMakeLists.txt	2015-09-29 19:04:18 UTC (rev 190320)
+++ trunk/CMakeLists.txt	2015-09-29 19:18:26 UTC (rev 190321)
@@ -1,6 +1,11 @@
 cmake_minimum_required(VERSION 2.8.12)
 project(WebKit)
 
+# This should be removed once we require CMake 3.3.
+if (POLICY CMP0058)
+    cmake_policy(SET CMP0058 NEW)
+endif ()
+
 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/Source/cmake")
 
 if (NOT DEFINED ENABLE_WEBKIT)

Modified: trunk/ChangeLog (190320 => 190321)


--- trunk/ChangeLog	2015-09-29 19:04:18 UTC (rev 190320)
+++ trunk/ChangeLog	2015-09-29 19:18:26 UTC (rev 190321)
@@ -1,3 +1,14 @@
+2015-09-29  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        [GTK][CMake] Warning about CMP0058
+        https://bugs.webkit.org/show_bug.cgi?id=149627
+
+        Reviewed by Martin Robinson.
+
+        Opt-in to the new behavior for CMP0058.
+
+        * CMakeLists.txt:
+
 2015-09-28  Brent Fulgham  <bfulg...@apple.com>
 
         [Win] Unreviewed build fix for internal systems.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to