Title: [111550] trunk/Source/WTF
Revision
111550
Author
[email protected]
Date
2012-03-21 09:25:49 -0700 (Wed, 21 Mar 2012)

Log Message

Fix the Windows build after r111504.

* WTF.vcproj/WTF.vcproj:
Platform.h was moved to Source/WTF.
* WTF.vcproj/copy-files.cmd:
Copy Platform.h from its new source location. This separate copy will not be necessary once
the full move is done and all the headers are being copied at once from the new locations.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (111549 => 111550)


--- trunk/Source/WTF/ChangeLog	2012-03-21 16:09:40 UTC (rev 111549)
+++ trunk/Source/WTF/ChangeLog	2012-03-21 16:25:49 UTC (rev 111550)
@@ -1,5 +1,15 @@
 2012-03-21  Jessie Berlin  <[email protected]>
 
+        Fix the Windows build after r111504.
+
+        * WTF.vcproj/WTF.vcproj:
+        Platform.h was moved to Source/WTF.
+        * WTF.vcproj/copy-files.cmd:
+        Copy Platform.h from its new source location. This separate copy will not be necessary once
+        the full move is done and all the headers are being copied at once from the new locations.
+
+2012-03-21  Jessie Berlin  <[email protected]>
+
         WTF headers should be in $(ConfigurationBuildDir)\include\private\wtf, not
         $(ConfigurationBuildDir)\include\private\_javascript_Core\wtf.
         https://bugs.webkit.org/show_bug.cgi?id=81739

Modified: trunk/Source/WTF/WTF.vcproj/WTF.vcproj (111549 => 111550)


--- trunk/Source/WTF/WTF.vcproj/WTF.vcproj	2012-03-21 16:09:40 UTC (rev 111549)
+++ trunk/Source/WTF/WTF.vcproj/WTF.vcproj	2012-03-21 16:25:49 UTC (rev 111550)
@@ -997,7 +997,7 @@
 			>
 		</File>
 		<File
-			RelativePath="wtf\Platform.h"
+			RelativePath="..\wtf\Platform.h"
 			>
 		</File>
 		<File

Modified: trunk/Source/WTF/WTF.vcproj/copy-files.cmd (111549 => 111550)


--- trunk/Source/WTF/WTF.vcproj/copy-files.cmd	2012-03-21 16:09:40 UTC (rev 111549)
+++ trunk/Source/WTF/WTF.vcproj/copy-files.cmd	2012-03-21 16:25:49 UTC (rev 111550)
@@ -19,6 +19,9 @@
     xcopy /y /d ..\..\_javascript_Core\%%d\*.h "%PrivateHeadersDirectory%\%%d" >NUL
 )
 
+echo Copying wtf/Platform.h ...
+xcopy /y /d ..\wtf\Platform.h "%PrivateHeadersDirectory%\wtf" >NUL
+
 echo Copying other files...
 for %%f in (
     create_hash_table
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to