Changeset 173155 in webkit


Ignore:
Timestamp:
Sep 1, 2014 2:28:47 AM (10 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

[CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
https://bugs.webkit.org/show_bug.cgi?id=136194

Reviewed by Csaba Osztrogonác.

Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.

  • CMakeLists.txt:
Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/CMakeLists.txt

    r172587 r173155  
    3333    set(ENABLE_TOOLS ON)
    3434endif ()
     35
     36# Do not create transitive library dependencies by default
     37set(CMAKE_LINK_INTERFACE_LIBRARIES "")
    3538
    3639include(WebKitMacros)
  • trunk/ChangeLog

    r173112 r173155  
     12014-09-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
     4        https://bugs.webkit.org/show_bug.cgi?id=136194
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
     9
     10        * CMakeLists.txt:
     11
    1122014-08-29  Eva Balazsfalvi  <evab.u-szeged@partner.samsung.com>
    213
  • trunk/Source/JavaScriptCore/CMakeLists.txt

    r173072 r173155  
    10971097set_target_properties(JavaScriptCore PROPERTIES COMPILE_DEFINITIONS "BUILDING_JavaScriptCore")
    10981098set_target_properties(JavaScriptCore PROPERTIES FOLDER "JavaScriptCore")
    1099 set_target_properties(JavaScriptCore PROPERTIES LINK_INTERFACE_LIBRARIES "")
    11001099
    11011100if (JavaScriptCore_OUTPUT_NAME)
  • trunk/Source/JavaScriptCore/ChangeLog

    r173141 r173155  
     12014-09-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
     4        https://bugs.webkit.org/show_bug.cgi?id=136194
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
     9
     10        * CMakeLists.txt:
     11
    1122014-08-26  Maciej Stachowiak  <mjs@apple.com>
    213
  • trunk/Source/WebCore/CMakeLists.txt

    r172930 r173155  
    35293529set_target_properties(WebCore PROPERTIES COMPILE_DEFINITIONS "BUILDING_WebCore")
    35303530set_target_properties(WebCore PROPERTIES FOLDER "WebCore")
    3531 set_target_properties(WebCore PROPERTIES LINK_INTERFACE_LIBRARIES "")
    35323531
    35333532if (WebCore_OUTPUT_NAME)
  • trunk/Source/WebCore/ChangeLog

    r173153 r173155  
     12014-09-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
     4        https://bugs.webkit.org/show_bug.cgi?id=136194
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
     9
     10        * CMakeLists.txt:
     11
    1122014-08-31  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    213
  • trunk/Source/WebKit2/CMakeLists.txt

    r173115 r173155  
    697697target_link_libraries(WebKit2 ${WebKit2_LIBRARIES})
    698698set_target_properties(WebKit2 PROPERTIES FOLDER "WebKit")
    699 set_target_properties(WebKit2 PROPERTIES LINK_INTERFACE_LIBRARIES "")
    700699
    701700if (WebKit2_VERSION_SCRIPT)
  • trunk/Source/WebKit2/ChangeLog

    r173154 r173155  
     12014-09-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
     4        https://bugs.webkit.org/show_bug.cgi?id=136194
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
     9
     10        * CMakeLists.txt:
     11
    1122014-09-01  Michael Catanzaro  <mcatanzaro@igalia.com>
    213
Note: See TracChangeset for help on using the changeset viewer.