Title: [221956] trunk/Source/WebKitLegacy
Revision
221956
Author
[email protected]
Date
2017-09-12 19:30:39 -0700 (Tue, 12 Sep 2017)

Log Message

[Win] Link errors when building WebKit from .proj files.
https://bugs.webkit.org/show_bug.cgi?id=176813

Reviewed by Brent Fulgham.

Add missing libraries to WebKit build.

* PlatformWin.cmake:

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/ChangeLog (221955 => 221956)


--- trunk/Source/WebKitLegacy/ChangeLog	2017-09-13 02:26:44 UTC (rev 221955)
+++ trunk/Source/WebKitLegacy/ChangeLog	2017-09-13 02:30:39 UTC (rev 221956)
@@ -1,3 +1,14 @@
+2017-09-12  Per Arne Vollan  <[email protected]>
+
+        [Win] Link errors when building WebKit from .proj files.
+        https://bugs.webkit.org/show_bug.cgi?id=176813
+
+        Reviewed by Brent Fulgham.
+
+        Add missing libraries to WebKit build.
+
+        * PlatformWin.cmake:
+
 2017-08-31  Don Olmstead  <[email protected]>
 
         [CMake] Make USE_CF conditional within Windows

Modified: trunk/Source/WebKitLegacy/PlatformWin.cmake (221955 => 221956)


--- trunk/Source/WebKitLegacy/PlatformWin.cmake	2017-09-13 02:26:44 UTC (rev 221955)
+++ trunk/Source/WebKitLegacy/PlatformWin.cmake	2017-09-13 02:30:39 UTC (rev 221956)
@@ -28,6 +28,10 @@
         PRIVATE libdispatch${DEBUG_SUFFIX}
         PRIVATE libicuin${DEBUG_SUFFIX}
         PRIVATE libicuuc${DEBUG_SUFFIX}
+        PRIVATE ${LIBXML2_LIBRARIES}
+        PRIVATE ${LIBXSLT_LIBRARIES}
+        PRIVATE ${SQLITE_LIBRARIES}
+        PRIVATE ${ZLIB_LIBRARIES}
     )
 endif ()
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to