Changeset 209991 in webkit


Ignore:
Timestamp:
Dec 19, 2016 11:12:38 AM (7 years ago)
Author:
Michael Catanzaro
Message:

[CMake] TestWebKitAPIBase links to itself
https://bugs.webkit.org/show_bug.cgi?id=165985

Reviewed by Alex Christensen.

Fix CMake warning about a target linking to itself, which makes no sense.

  • TestWebKitAPI/CMakeLists.txt:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r209981 r209991  
     12016-12-19  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [CMake] TestWebKitAPIBase links to itself
     4        https://bugs.webkit.org/show_bug.cgi?id=165985
     5
     6        Reviewed by Alex Christensen.
     7
     8        Fix CMake warning about a target linking to itself, which makes no sense.
     9
     10        * TestWebKitAPI/CMakeLists.txt:
     11
    1122016-12-19  Michael Catanzaro  <mcatanzaro@igalia.com>
    213
  • trunk/Tools/TestWebKitAPI/CMakeLists.txt

    r209665 r209991  
    205205    )
    206206
    207     target_link_libraries(TestWebKitAPIBase ${test_webkit2_api_LIBRARIES})
     207    target_link_libraries(TestWebKitAPIBase JavaScriptCore WTF WebKit2 gtest)
    208208
    209209    add_dependencies(TestWebKitAPIBase WebKit2 ${ForwardingHeadersForTestWebKitAPI_NAME} ${ForwardingNetworkHeadersForTestWebKitAPI_NAME})
Note: See TracChangeset for help on using the changeset viewer.