Changeset 251915 in webkit


Ignore:
Timestamp:
Nov 1, 2019 7:26:16 AM (4 years ago)
Author:
Fujii Hironori
Message:

[CMake] TestWebCore shouldn't link with WebCoreTestSupport
https://bugs.webkit.org/show_bug.cgi?id=203672

Reviewed by Don Olmstead.

TestWebCore doesn't need to link with WebCoreTestSupport. And, it
causes a problem for Windows because WebCoreTestSupport imports
WebCore symbols by using dllimport, however, WebCore is not a DLL.
(Bug 203663 Comment 4)

  • TestWebKitAPI/CMakeLists.txt: Changed TestWebCore not to link

with WebCoreTestSupport. Changed TestWebCore to link with
WebCoreHeaderInterface instead.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r251901 r251915  
     12019-11-01  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [CMake] TestWebCore shouldn't link with WebCoreTestSupport
     4        https://bugs.webkit.org/show_bug.cgi?id=203672
     5
     6        Reviewed by Don Olmstead.
     7
     8        TestWebCore doesn't need to link with WebCoreTestSupport. And, it
     9        causes a problem for Windows because WebCoreTestSupport imports
     10        WebCore symbols by using dllimport, however, WebCore is not a DLL.
     11        (Bug 203663 Comment 4)
     12
     13        * TestWebKitAPI/CMakeLists.txt: Changed TestWebCore not to link
     14        with WebCoreTestSupport. Changed TestWebCore to link with
     15        WebCoreHeaderInterface instead.
     16
    1172019-10-31  Jonathan Bedard  <jbedard@apple.com>
    218
  • trunk/Tools/TestWebKitAPI/CMakeLists.txt

    r250591 r251915  
    148148
    149149    set(TestWebCore_LIBRARIES
    150         WebCoreTestSupport
    151150        gtest
    152151    )
    153152    if (NOT APPLE)
    154         list(APPEND TestWebCore_LIBRARIES WebCore)
     153        list(APPEND TestWebCore_LIBRARIES WebCore WebCoreHeaderInterface)
    155154    endif ()
    156155
Note: See TracChangeset for help on using the changeset viewer.