Title: [196502] trunk/Source/WebKit
Revision
196502
Author
achristen...@apple.com
Date
2016-02-12 13:43:57 -0800 (Fri, 12 Feb 2016)

Log Message

Fix internal Windows WebKit debug build.
rdar://problem/24635219

* PlatformWin.cmake:
We were making WebKit.dll instead of WebKit_debug.dll.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (196501 => 196502)


--- trunk/Source/WebKit/ChangeLog	2016-02-12 21:39:56 UTC (rev 196501)
+++ trunk/Source/WebKit/ChangeLog	2016-02-12 21:43:57 UTC (rev 196502)
@@ -1,3 +1,11 @@
+2016-02-12  Alex Christensen  <achristen...@webkit.org>
+
+        Fix internal Windows WebKit debug build.
+        rdar://problem/24635219
+
+        * PlatformWin.cmake:
+        We were making WebKit.dll instead of WebKit_debug.dll.
+
 2016-02-11  Alex Christensen  <achristen...@webkit.org>
 
         Fix internal Windows build.

Modified: trunk/Source/WebKit/PlatformWin.cmake (196501 => 196502)


--- trunk/Source/WebKit/PlatformWin.cmake	2016-02-12 21:39:56 UTC (rev 196501)
+++ trunk/Source/WebKit/PlatformWin.cmake	2016-02-12 21:43:57 UTC (rev 196502)
@@ -471,3 +471,7 @@
 set(WebKitGUID_POST_BUILD_COMMAND "${CMAKE_BINARY_DIR}/DerivedSources/WebKit/postBuild.cmd")
 file(WRITE "${WebKitGUID_POST_BUILD_COMMAND}" "@xcopy /y /d /f \"${DERIVED_SOURCES_WEBKIT_DIR}/Interfaces/WebKit.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebKit\" >nul 2>nul")
 add_custom_command(TARGET WebKitGUID POST_BUILD COMMAND ${WebKitGUID_POST_BUILD_COMMAND} VERBATIM)
+
+set(WebKit_OUTPUT_NAME
+    WebKit${DEBUG_SUFFIX}
+)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to