Changeset 190321 in webkit


Ignore:
Timestamp:
Sep 29, 2015 12:18:26 PM (9 years ago)
Author:
Michael Catanzaro
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:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r189056 r190321  
    11cmake_minimum_required(VERSION 2.8.12)
    22project(WebKit)
     3
     4# This should be removed once we require CMake 3.3.
     5if (POLICY CMP0058)
     6    cmake_policy(SET CMP0058 NEW)
     7endif ()
    38
    49set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/Source/cmake")
  • trunk/ChangeLog

    r190293 r190321  
     12015-09-29  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [GTK][CMake] Warning about CMP0058
     4        https://bugs.webkit.org/show_bug.cgi?id=149627
     5
     6        Reviewed by Martin Robinson.
     7
     8        Opt-in to the new behavior for CMP0058.
     9
     10        * CMakeLists.txt:
     11
    1122015-09-28  Brent Fulgham  <bfulgham@apple.com>
    213
Note: See TracChangeset for help on using the changeset viewer.