Changeset 207831 in webkit


Ignore:
Timestamp:
Oct 25, 2016 12:14:55 PM (8 years ago)
Author:
Konstantin Tokarev
Message:

[cmake] Check if jscLib and WebKitGUID targets exist before using them
https://bugs.webkit.org/show_bug.cgi?id=163945

Reviewed by Alex Christensen.

Currently these targets are used under WIN32 condition, however they
are defined in PlatformWin.cmake, causing CMake warnings if port
supports WIN32 but does not use PlatformWin.cmake

Source/JavaScriptCore:

  • shell/CMakeLists.txt:

Source/WebKit:

  • CMakeLists.txt:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r207825 r207831  
     12016-10-25  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [cmake] Check if jscLib and WebKitGUID targets exist before using them
     4        https://bugs.webkit.org/show_bug.cgi?id=163945
     5
     6        Reviewed by Alex Christensen.
     7
     8        Currently these targets are used under WIN32 condition, however they
     9        are defined in PlatformWin.cmake, causing CMake warnings if port
     10        supports WIN32 but does not use PlatformWin.cmake
     11
     12        * shell/CMakeLists.txt:
     13
    1142016-10-25  JF Bastien  <jfbastien@apple.com>
    215
  • trunk/Source/JavaScriptCore/shell/CMakeLists.txt

    r207693 r207831  
    3737endif ()
    3838
    39 if (WIN32)
     39if (TARGET jscLib)
    4040    add_dependencies(jsc jscLib)
    4141endif ()
  • trunk/Source/WebKit/CMakeLists.txt

    r203134 r207831  
    5050
    5151add_dependencies(WebKit WebCore)
    52 if (WIN32)
     52if (TARGET WebKitGUID)
    5353    add_dependencies(WebKit WebKitGUID)
    5454endif ()
  • trunk/Source/WebKit/ChangeLog

    r207794 r207831  
     12016-10-25  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [cmake] Check if jscLib and WebKitGUID targets exist before using them
     4        https://bugs.webkit.org/show_bug.cgi?id=163945
     5
     6        Reviewed by Alex Christensen.
     7
     8        Currently these targets are used under WIN32 condition, however they
     9        are defined in PlatformWin.cmake, causing CMake warnings if port
     10        supports WIN32 but does not use PlatformWin.cmake
     11
     12        * CMakeLists.txt:
     13
    1142016-10-24  Per Arne Vollan  <pvollan@apple.com>
    215
Note: See TracChangeset for help on using the changeset viewer.