Title: [196377] trunk/Source/WebKit
Revision
196377
Author
achristen...@apple.com
Date
2016-02-10 11:56:25 -0800 (Wed, 10 Feb 2016)

Log Message

Fix internal Windows build
https://bugs.webkit.org/show_bug.cgi?id=154080
rdar://problem/24584417

Reviewed by Brent Fulgham.

* CMakeLists.txt:
Explicitly make WebKit dependent on WebKitGUID so that WebKit will not start building
before WebKitGUID is finished generating and copying all headers, including WebKit/WebKit.h.

Modified Paths

Diff

Modified: trunk/Source/WebKit/CMakeLists.txt (196376 => 196377)


--- trunk/Source/WebKit/CMakeLists.txt	2016-02-10 19:54:38 UTC (rev 196376)
+++ trunk/Source/WebKit/CMakeLists.txt	2016-02-10 19:56:25 UTC (rev 196377)
@@ -38,6 +38,9 @@
 
 add_library(WebKit ${WebKit_LIBRARY_TYPE} ${WebKit_SOURCES})
 add_dependencies(WebKit WebCore)
+if (WIN32)
+    add_dependencies(WebKit WebKitGUID)
+endif ()
 target_link_libraries(WebKit ${WebKit_LIBRARIES})
 set_target_properties(WebKit PROPERTIES FOLDER "WebKit")
 

Modified: trunk/Source/WebKit/ChangeLog (196376 => 196377)


--- trunk/Source/WebKit/ChangeLog	2016-02-10 19:54:38 UTC (rev 196376)
+++ trunk/Source/WebKit/ChangeLog	2016-02-10 19:56:25 UTC (rev 196377)
@@ -1,3 +1,15 @@
+2016-02-10  Alex Christensen  <achristen...@webkit.org>
+
+        Fix internal Windows build
+        https://bugs.webkit.org/show_bug.cgi?id=154080
+        rdar://problem/24584417
+
+        Reviewed by Brent Fulgham.
+
+        * CMakeLists.txt:
+        Explicitly make WebKit dependent on WebKitGUID so that WebKit will not start building
+        before WebKitGUID is finished generating and copying all headers, including WebKit/WebKit.h.
+
 2016-01-27  Anders Carlsson  <ander...@apple.com>
 
         Add WebKitAdditions extension points to WebCore, WebKit and WebKitLegacy
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to