Title: [195548] trunk/Source/WebCore
Revision
195548
Author
[email protected]
Date
2016-01-25 12:37:44 -0800 (Mon, 25 Jan 2016)

Log Message

[Win] Fix clean build after r195545.

* CMakeLists.txt:
* PlatformWin.cmake:
I got a little carried away.  WebCore already had a pre-build event.  It was correct before r195545.

Modified Paths

Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (195547 => 195548)


--- trunk/Source/WebCore/CMakeLists.txt	2016-01-25 20:29:53 UTC (rev 195547)
+++ trunk/Source/WebCore/CMakeLists.txt	2016-01-25 20:37:44 UTC (rev 195548)
@@ -3775,7 +3775,7 @@
     add_dependencies(WebCore WebCorePreBuild)
 endif ()
 
-if (WebCore_PRE_BUILD_COMMAND)
+if (WebCore_POST_BUILD_COMMAND)
     add_custom_command(TARGET WebCore PRE_BUILD COMMAND ${WebCore_PRE_BUILD_COMMAND} VERBATIM)
 endif ()
 

Modified: trunk/Source/WebCore/ChangeLog (195547 => 195548)


--- trunk/Source/WebCore/ChangeLog	2016-01-25 20:29:53 UTC (rev 195547)
+++ trunk/Source/WebCore/ChangeLog	2016-01-25 20:37:44 UTC (rev 195548)
@@ -1,3 +1,11 @@
+2016-01-25  Alex Christensen  <[email protected]>
+
+        [Win] Fix clean build after r195545.
+
+        * CMakeLists.txt:
+        * PlatformWin.cmake:
+        I got a little carried away.  WebCore already had a pre-build event.  It was correct before r195545.
+
 2016-01-25  Beth Dakin  <[email protected]>
 
         Handle soft spaces after accepted candidates

Modified: trunk/Source/WebCore/PlatformWin.cmake (195547 => 195548)


--- trunk/Source/WebCore/PlatformWin.cmake	2016-01-25 20:29:53 UTC (rev 195547)
+++ trunk/Source/WebCore/PlatformWin.cmake	2016-01-25 20:37:44 UTC (rev 195548)
@@ -296,8 +296,8 @@
     file(APPEND "${WebCore_PRE_BUILD_COMMAND}" "@xcopy /y /d /f \"${WEBCORE_DIR}/${_directory}/*.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebCore\" >nul 2>nul\n")
 endforeach ()
 
-set(WebCore_PRE_BUILD_COMMAND "${CMAKE_BINARY_DIR}/DerivedSources/WebCore/preBuild.cmd")
-file(WRITE "${WebCore_PRE_BUILD_COMMAND}" "@xcopy /y /s /d /f \"${DERIVED_SOURCES_WEBCORE_DIR}/*.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebCore\" >nul 2>nul\n")
+set(WebCore_POST_BUILD_COMMAND "${CMAKE_BINARY_DIR}/DerivedSources/WebCore/postBuild.cmd")
+file(WRITE "${WebCore_POST_BUILD_COMMAND}" "@xcopy /y /s /d /f \"${DERIVED_SOURCES_WEBCORE_DIR}/*.h\" \"${DERIVED_SOURCES_DIR}/ForwardingHeaders/WebCore\" >nul 2>nul\n")
 
 set(WebCore_OUTPUT_NAME
     WebCore${DEBUG_SUFFIX}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to