Title: [260648] trunk
Revision
260648
Author
[email protected]
Date
2020-04-24 09:32:59 -0700 (Fri, 24 Apr 2020)

Log Message

[Win] Fix AppleWin build
https://bugs.webkit.org/show_bug.cgi?id=210971

Reviewed by Brent Fulgham.

PAL is built as a static library.

* Source/cmake/target/PAL.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (260647 => 260648)


--- trunk/ChangeLog	2020-04-24 16:22:45 UTC (rev 260647)
+++ trunk/ChangeLog	2020-04-24 16:32:59 UTC (rev 260648)
@@ -1,3 +1,14 @@
+2020-04-24  Per Arne Vollan  <[email protected]>
+
+        [Win] Fix AppleWin build
+        https://bugs.webkit.org/show_bug.cgi?id=210971
+
+        Reviewed by Brent Fulgham.
+
+        PAL is built as a static library.
+
+        * Source/cmake/target/PAL.cmake:
+
 2020-04-23  Yusuke Suzuki  <[email protected]>
 
         Make JSCOnly work on macOS

Modified: trunk/Source/cmake/target/PAL.cmake (260647 => 260648)


--- trunk/Source/cmake/target/PAL.cmake	2020-04-24 16:22:45 UTC (rev 260647)
+++ trunk/Source/cmake/target/PAL.cmake	2020-04-24 16:32:59 UTC (rev 260648)
@@ -7,8 +7,7 @@
     # Just assuming Windows for the moment
     add_library(WebKit::PAL STATIC IMPORTED)
     set_target_properties(WebKit::PAL PROPERTIES
-        IMPORTED_LOCATION ${WEBKIT_LIBRARIES_RUNTIME_DIR}/PAL${DEBUG_SUFFIX}.dll
-        IMPORTED_IMPLIB ${WEBKIT_LIBRARIES_LINK_DIR}/PAL${DEBUG_SUFFIX}.lib
+        IMPORTED_LOCATION ${WEBKIT_LIBRARIES_LINK_DIR}/PAL${DEBUG_SUFFIX}.lib
         # Should add Apple libraries here when https://bugs.webkit.org/show_bug.cgi?id=205085 lands
         INTERFACE_LINK_LIBRARIES "WebKit::WTF"
     )
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to