Changeset 180676 in webkit
- Timestamp:
- Feb 26, 2015, 8:51:10 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 31 edited
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCoreGenerated.make (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCorePreBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/copy-files.cmd (modified) (6 diffs)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/jsc/jscLauncherPreBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/jsc/jscPreBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/testRegExp/testRegExpPreBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiLauncherPostBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiLauncherPreBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiPostBuild.cmd (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiPreBuild.cmd (modified) (1 diff)
-
Source/WTF/ChangeLog (modified) (1 diff)
-
Source/WTF/WTF.vcxproj/WTFGenerated.make (modified) (1 diff)
-
Source/WTF/WTF.vcxproj/WTFPreBuild.cmd (modified) (1 diff)
-
Source/WTF/WTF.vcxproj/copy-files.cmd (modified) (4 diffs)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/WebCore.vcxproj/WebCoreGenerated.make (modified) (1 diff)
-
Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd (modified) (1 diff)
-
Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd (modified) (1 diff)
-
Source/WebCore/WebCore.vcxproj/copyWebCoreResourceFiles.cmd (modified) (1 diff)
-
Source/WebInspectorUI/ChangeLog (modified) (1 diff)
-
Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make (modified) (1 diff)
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd (modified) (1 diff)
-
Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd (modified) (2 diffs)
-
Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd (modified) (1 diff)
-
Source/WebKit/WebKit.vcxproj/WebKit/WebKitPreBuild.cmd (modified) (1 diff)
-
Source/WebKit/WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd (modified) (1 diff)
-
WebKitLibraries/ChangeLog (modified) (1 diff)
-
WebKitLibraries/win/tools/vsprops/common.props (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r180667 r180676 1 2015-02-26 Brent Fulgham <bfulgham@apple.com> 2 3 [Win] Make build logs more legible by reducing noise 4 https://bugs.webkit.org/show_bug.cgi?id=142034 5 6 Reviewed by Alexey Proskuryakov. 7 8 Modify batch files, makefiles, and DOS commands to remove 9 uninteresting/unhelpful output. 10 11 * JavaScriptCore.vcxproj/JavaScriptCoreGenerated.make: 12 * JavaScriptCore.vcxproj/JavaScriptCorePreBuild.cmd: 13 * JavaScriptCore.vcxproj/copy-files.cmd: 14 * JavaScriptCore.vcxproj/jsc/jscLauncherPreBuild.cmd: 15 * JavaScriptCore.vcxproj/jsc/jscPreBuild.cmd: 16 * JavaScriptCore.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd: 17 * JavaScriptCore.vcxproj/testRegExp/testRegExpPreBuild.cmd: 18 * JavaScriptCore.vcxproj/testapi/testapiLauncherPostBuild.cmd: 19 * JavaScriptCore.vcxproj/testapi/testapiLauncherPreBuild.cmd: 20 * JavaScriptCore.vcxproj/testapi/testapiPostBuild.cmd: 21 * JavaScriptCore.vcxproj/testapi/testapiPreBuild.cmd: 22 1 23 2015-02-26 Csaba Osztrogonác <ossy@webkit.org> 2 24 -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCoreGenerated.make
r170937 r180676 1 1 all: 2 touch "%ConfigurationBuildDir%\buildfailed"3 perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "%PlatformArchitecture%"4 copy-files.cmd2 @touch "%ConfigurationBuildDir%\buildfailed" 3 @perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "%PlatformArchitecture%" 4 @copy-files.cmd 5 5 6 - del "%ConfigurationBuildDir%\include\private\JavaScriptCore\stdbool.h" "%ConfigurationBuildDir%\include\private\JavaScriptCore\stdint.h"7 - del "%ConfigurationBuildDir%\buildfailed"6 -@del "%ConfigurationBuildDir%\include\private\JavaScriptCore\stdbool.h" "%ConfigurationBuildDir%\include\private\JavaScriptCore\stdint.h" >nul 2>nul 7 -@del "%ConfigurationBuildDir%\buildfailed" 8 8 9 9 clean: 10 - del "%ConfigurationBuildDir%\buildfailed"10 -@del "%ConfigurationBuildDir%\buildfailed" 11 11 copy-files.cmd clean 12 - del /s /q "%ConfigurationBuildDir%\obj%PlatformArchitecture%\JavaScriptCore\DerivedSources"12 -@del /s /q "%ConfigurationBuildDir%\obj%PlatformArchitecture%\JavaScriptCore\DerivedSources" -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCorePreBuild.cmd
r172805 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/copy-files.cmd
r178714 r180676 10 10 11 11 echo Copying public headers... 12 mkdir "%PublicHeadersDirectory%" 2>NUL12 @mkdir "%PublicHeadersDirectory%" 2>NUL 13 13 for %%f in ( 14 14 APICast.h … … 34 34 WebKitAvailability.h 35 35 ) do ( 36 xcopy /y /d ..\API\%%f "%PublicHeadersDirectory%" >NUL36 @xcopy /y /d ..\API\%%f "%PublicHeadersDirectory%" >NUL 37 37 ) 38 38 … … 59 59 yarr 60 60 ) do ( 61 xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%" >NUL61 @xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%" >NUL 62 62 ) 63 63 … … 67 67 inspector\scripts\codegen 68 68 ) do ( 69 xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL69 @xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL 70 70 ) 71 71 72 72 echo Copying Inspector generated files as if they were private headers... 73 xcopy /y "%DerivedSourcesDirectory%\CombinedDomains.json" "%PrivateHeadersDirectory%" >NUL74 xcopy /y "%DerivedSourcesDirectory%\InspectorProtocolObjects.h" "%PrivateHeadersDirectory%" >NUL75 xcopy /y "%DerivedSourcesDirectory%\InspectorBackendDispatchers.h" "%PrivateHeadersDirectory%" >NUL76 xcopy /y "%DerivedSourcesDirectory%\InspectorFrontendDispatchers.h" "%PrivateHeadersDirectory%" >NUL77 xcopy /y "%DerivedSourcesDirectory%\InspectorBackendCommands.js" "%PrivateHeadersDirectory%" >NUL73 @xcopy /y "%DerivedSourcesDirectory%\CombinedDomains.json" "%PrivateHeadersDirectory%" >NUL 74 @xcopy /y "%DerivedSourcesDirectory%\InspectorProtocolObjects.h" "%PrivateHeadersDirectory%" >NUL 75 @xcopy /y "%DerivedSourcesDirectory%\InspectorBackendDispatchers.h" "%PrivateHeadersDirectory%" >NUL 76 @xcopy /y "%DerivedSourcesDirectory%\InspectorFrontendDispatchers.h" "%PrivateHeadersDirectory%" >NUL 77 @xcopy /y "%DerivedSourcesDirectory%\InspectorBackendCommands.js" "%PrivateHeadersDirectory%" >NUL 78 78 79 79 echo Copying Web Replay scripts as if they were private headers... … … 81 81 replay\scripts 82 82 ) do ( 83 xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL83 @xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL 84 84 ) 85 85 86 86 echo Copying Web Replay generated headers as if they were private headers... 87 xcopy /y "%DerivedSourcesDirectory%\JSReplayInputs.h" "%PrivateHeadersDirectory%" >NUL87 @xcopy /y "%DerivedSourcesDirectory%\JSReplayInputs.h" "%PrivateHeadersDirectory%" >NUL 88 88 89 89 echo Copying Web Replay specification files as if they were private headers... 90 xcopy /y /d ..\replay\*.json "%PrivateHeadersDirectory%" >NUL90 @xcopy /y /d ..\replay\*.json "%PrivateHeadersDirectory%" >NUL 91 91 92 92 echo Copying builtins header as if it were a private header... 93 xcopy /y "%DerivedSourcesDirectory%\JSCBuiltins.h" "%PrivateHeadersDirectory%" >NUL94 xcopy /y "%DerivedSourcesDirectory%\Bytecodes.h" "%PrivateHeadersDirectory%" >NUL93 @xcopy /y "%DerivedSourcesDirectory%\JSCBuiltins.h" "%PrivateHeadersDirectory%" >NUL 94 @xcopy /y "%DerivedSourcesDirectory%\Bytecodes.h" "%PrivateHeadersDirectory%" >NUL 95 95 96 96 echo Copying resources... 97 mkdir "%ResourcesDirectory%" 2>NUL98 xcopy /y /d JavaScriptCore.resources\* "%ResourcesDirectory%" >NUL97 @mkdir "%ResourcesDirectory%" 2>NUL 98 @xcopy /y /d JavaScriptCore.resources\* "%ResourcesDirectory%" >NUL 99 99 100 100 goto :EOF … … 103 103 104 104 echo Deleting copied files... 105 if exist "%PublicHeadersDirectory%" rmdir /s /q "%PublicHeadersDirectory%">NUL106 if exist "%PrivateHeadersDirectory%" rmdir /s /q "%PrivateHeadersDirectory%">NUL107 if exist "%ResourcesDirectory%" rmdir /s /q "%ResourcesDirectory%">NUL105 @if exist "%PublicHeadersDirectory%" rmdir /s /q "%PublicHeadersDirectory%" >NUL 2>NUL 106 @if exist "%PrivateHeadersDirectory%" rmdir /s /q "%PrivateHeadersDirectory%" >NUL 2>NUL 107 @if exist "%ResourcesDirectory%" rmdir /s /q "%ResourcesDirectory%" >NUL 2>NUL -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/jsc/jscLauncherPreBuild.cmd
r173018 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/jsc/jscPreBuild.cmd
r170937 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd
r173018 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/testRegExp/testRegExpPreBuild.cmd
r170937 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiLauncherPostBuild.cmd
r173018 r180676 1 1 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed" 2 2 3 xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%" 3 @xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%" >nul 2>nul -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiLauncherPreBuild.cmd
r173018 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiPostBuild.cmd
r140859 r180676 1 1 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed" 2 2 3 xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%" 3 @xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%" >nul 2>nul -
trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/testapi/testapiPreBuild.cmd
r170937 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c 4 4 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed" 5 5 if errorlevel 1 exit 1 6 echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"6 @echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed" -
trunk/Source/WTF/ChangeLog
r180674 r180676 1 2015-02-26 Brent Fulgham <bfulgham@apple.com> 2 3 [Win] Make build logs more legible by reducing noise 4 https://bugs.webkit.org/show_bug.cgi?id=142034 5 6 Reviewed by Alexey Proskuryakov. 7 8 Modify batch files, makefiles, and DOS commands to remove 9 uninteresting/unhelpful output. 10 11 * WTF.vcxproj/WTFGenerated.make: 12 * WTF.vcxproj/WTFPreBuild.cmd: 13 * WTF.vcxproj/copy-files.cmd: 14 1 15 2015-02-26 Landry Breuil <landry@openbsd.org> 2 16 -
trunk/Source/WTF/WTF.vcxproj/WTFGenerated.make
r173984 r180676 1 1 all: WTFHeaderDetection.h 2 touch "%ConfigurationBuildDir%\buildfailed"3 perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "$(DEBUGSUFFIX)" "%PlatformArchitecture%"2 @touch "%ConfigurationBuildDir%\buildfailed" 3 @perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "$(DEBUGSUFFIX)" "%PlatformArchitecture%" 4 4 !IF "$(OFFICIAL_BUILD)"!="1" 5 python2.7 work-around-vs-dependency-tracking-bugs.py5 -@python2.7 work-around-vs-dependency-tracking-bugs.py 6 6 !ENDIF 7 copy-files.cmd7 @copy-files.cmd 8 8 9 - del "%ConfigurationBuildDir%\buildfailed"9 -@del "%ConfigurationBuildDir%\buildfailed" 10 10 11 11 clean: 12 - del "%ConfigurationBuildDir%\buildfailed"13 - del "%ConfigurationBuildDir%\include\private\wtf\WTFHeaderDetection.h"14 copy-files.cmd clean12 -@del "%ConfigurationBuildDir%\buildfailed" 13 -@del "%ConfigurationBuildDir%\include\private\wtf\WTFHeaderDetection.h" 14 @copy-files.cmd clean 15 15 16 16 # Header detection 17 17 WTFHeaderDetection.h: WTFGenerated.make 18 -mkdir "%ConfigurationBuildDir%\include\private\wtf 19 <<testOSXLevel.cmd 18 -@mkdir "%ConfigurationBuildDir%\include\private\wtf" 19 -@<<testOSXLevel.cmd 20 @echo off 20 21 IF EXIST "%ConfigurationBuildDir%\include\private\wtf\$@" GOTO DONE 21 22 echo /* No Legible Output Support Found */ > "%ConfigurationBuildDir%\include\private\wtf\$@" -
trunk/Source/WTF/WTF.vcxproj/WTFPreBuild.cmd
r171798 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/WTF/WTF.vcxproj/copy-files.cmd
r170939 r180676 9 9 if "%1" EQU "rebuild" call :clean 10 10 11 echo Copying WTF headers... 11 12 for %%d in ( 12 13 wtf … … 20 21 wtf\win 21 22 ) do ( 22 mkdir "%PrivateHeadersDirectory%\%%d" 2>NUL23 xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%\%%d" >NUL 23 mkdir "%PrivateHeadersDirectory%\%%d" >NUL 2>NUL 24 xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%\%%d" >NUL 2>NUL 24 25 ) 25 26 … … 32 33 wtf\text\WTFString.cpp 33 34 ) do ( 34 echo F | xcopy /y /d ..\%%f "%PrivateHeadersDirectory%\%%f" >NUL 35 echo F | xcopy /y /d ..\%%f "%PrivateHeadersDirectory%\%%f" >NUL 2>NUL 35 36 ) 36 37 … … 42 43 if exist "%PrivateHeadersDirectory%" rmdir /s /q "%PrivateHeadersDirectory%" >NUL 43 44 endlocal 44 -
trunk/Source/WebCore/ChangeLog
r180675 r180676 1 2015-02-26 Brent Fulgham <bfulgham@apple.com> 2 3 [Win] Make build logs more legible by reducing noise 4 https://bugs.webkit.org/show_bug.cgi?id=142034 5 6 Reviewed by Alexey Proskuryakov. 7 8 Modify batch files, makefiles, and DOS commands to remove 9 uninteresting/unhelpful output. 10 11 * WebCore.vcxproj/WebCoreGenerated.make: 12 * WebCore.vcxproj/WebCorePreBuild.cmd: 13 * WebCore.vcxproj/copyForwardingHeaders.cmd: 14 * WebCore.vcxproj/copyWebCoreResourceFiles.cmd: 15 1 16 2015-02-26 Michael Catanzaro <mcatanzaro@igalia.com> 2 17 -
trunk/Source/WebCore/WebCore.vcxproj/WebCoreGenerated.make
r174523 r180676 1 1 make: 2 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XXWebCoreGeneratedXX/) { print } else { exit 1 }" "%ConfigurationBuildDir%\buildfailed"3 if errorlevel 1 exit 14 echo XXWebCoreGeneratedXX > "%ConfigurationBuildDir%\buildfailed"2 @if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XXWebCoreGeneratedXX/) { print } else { exit 1 }" "%ConfigurationBuildDir%\buildfailed" 3 @if errorlevel 1 exit 1 4 @echo XXWebCoreGeneratedXX > "%ConfigurationBuildDir%\buildfailed" 5 5 6 6 perl build-generated-files.pl "%ConfigurationBuildDir%" "%WebKit_Libraries%" windows "%PlatformArchitecture%" 7 7 perl migrate-scripts.pl "%ConfigurationBuildDir%\obj%PlatformArchitecture%\WebCore\scripts" 8 cmd /C copyForwardingHeaders.cmd cg cf9 cmd /C copyWebCoreResourceFiles.cmd8 @cmd /C copyForwardingHeaders.cmd cg cf 9 @cmd /C copyWebCoreResourceFiles.cmd 10 10 11 11 clean: -
trunk/Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd
r170937 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c 4 4 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed" 5 5 if errorlevel 1 exit 1 6 echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed" 7 set AngleHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private 8 mkdir "%AngleHeadersDirectory%" 2>NUL 9 xcopy /y /d /s "%ProjectDir%..\..\ThirdParty\ANGLE\include" "%AngleHeadersDirectory%" 10 xcopy /y /d "%AngleHeadersDirectory%\KHR\khrplatform.h" "%AngleHeadersDirectory%" 11 xcopy /y /d "%AngleHeadersDirectory%\EGL\eglplatform.h" "%AngleHeadersDirectory%" 12 xcopy /y /d /s "%ProjectDir%..\platform\graphics\win\GL" "%AngleHeadersDirectory%" 6 @echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed" 7 @set AngleHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private 8 9 echo Copying ANGLE headers 10 @mkdir "%AngleHeadersDirectory%" 2>NUL 11 @xcopy /y /d /s "%ProjectDir%..\..\ThirdParty\ANGLE\include" "%AngleHeadersDirectory%" 12 @xcopy /y /d "%AngleHeadersDirectory%\KHR\khrplatform.h" "%AngleHeadersDirectory%" 13 @xcopy /y /d "%AngleHeadersDirectory%\EGL\eglplatform.h" "%AngleHeadersDirectory%" 14 @xcopy /y /d /s "%ProjectDir%..\platform\graphics\win\GL" "%AngleHeadersDirectory%" 13 15 exit /b -
trunk/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd
r178219 r180676 1 rem %1 argument is used for graphics. It can be cg or cairo 2 rem %2 argument is used for network. It can be cf or curl 1 echo Copying Forwarding Headers... 2 @rem %1 argument is used for graphics. It can be cg or cairo 3 @rem %2 argument is used for network. It can be cf or curl 3 4 4 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\private\WebCore"5 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore"6 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders"7 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings"8 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser"9 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime"10 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm"11 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler"12 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap"13 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector"14 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr"15 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport"5 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\private\WebCore" 6 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore" 7 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders" 8 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings" 9 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser" 10 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime" 11 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm" 12 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler" 13 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap" 14 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector" 15 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr" 16 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport" 16 17 17 xcopy /y /d "%ProjectDir%..\config.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 18 xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 19 xcopy /y /d "%ProjectDir%..\Modules\filesystem\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 20 xcopy /y /d "%ProjectDir%..\Modules\gamepad\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 21 xcopy /y /d "%ProjectDir%..\Modules\geolocation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 22 xcopy /y /d "%ProjectDir%..\Modules\indexeddb\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 23 xcopy /y /d "%ProjectDir%..\Modules\mediacontrols\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 24 xcopy /y /d "%ProjectDir%..\Modules\mediasource\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 25 xcopy /y /d "%ProjectDir%..\Modules\navigatorcontentutils\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 26 xcopy /y /d "%ProjectDir%..\Modules\notifications\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 27 xcopy /y /d "%ProjectDir%..\Modules\quota\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 28 xcopy /y /d "%ProjectDir%..\Modules\webdatabase\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 29 xcopy /y /d "%ProjectDir%..\Modules\websockets\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 30 xcopy /y /d "%ProjectDir%..\accessibility\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 31 xcopy /y /d "%ProjectDir%..\accessibility\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 32 xcopy /y /d "%ProjectDir%..\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 33 xcopy /y /d "%ProjectDir%..\loader\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 34 xcopy /y /d "%ProjectDir%..\loader\appcache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 35 xcopy /y /d "%ProjectDir%..\loader\archive\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 36 xcopy /y /d "%ProjectDir%..\loader\archive\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 37 xcopy /y /d "%ProjectDir%..\loader\cache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 38 xcopy /y /d "%ProjectDir%..\loader\icon\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 39 xcopy /y /d "%ProjectDir%..\history\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 40 xcopy /y /d "%ProjectDir%..\history\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 41 xcopy /y /d "%ProjectDir%..\html\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 42 xcopy /y /d "%ProjectDir%..\html\forms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 43 xcopy /y /d "%ProjectDir%..\html\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 44 xcopy /y /d "%ProjectDir%..\html\shadow\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 45 xcopy /y /d "%ProjectDir%..\html\track\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 46 xcopy /y /d "%ProjectDir%..\css\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 47 xcopy /y /d "%ProjectDir%..\platform\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 48 xcopy /y /d "%ProjectDir%..\platform\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 49 xcopy /y /d "%ProjectDir%..\platform\audio\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 50 xcopy /y /d "%ProjectDir%..\platform\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 51 xcopy /y /d "%ProjectDir%..\platform\cf\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 52 xcopy /y /d "%ProjectDir%..\platform\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 53 xcopy /y /d "%ProjectDir%..\platform\graphics\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 54 xcopy /y /d "%ProjectDir%..\platform\graphics\filters\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 55 xcopy /y /d "%ProjectDir%..\platform\graphics\transforms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 56 xcopy /y /d "%ProjectDir%..\platform\graphics\ca\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 57 xcopy /y /d "%ProjectDir%..\platform\graphics\ca\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 58 xcopy /y /d "%ProjectDir%..\platform\graphics\gstreamer\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 59 xcopy /y /d "%ProjectDir%..\platform\graphics\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 60 xcopy /y /d "%ProjectDir%..\platform\graphics\win\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 61 xcopy /y /d "%ProjectDir%..\platform\graphics\opentype\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 62 xcopy /y /d "%ProjectDir%..\platform\graphics\opengl\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 63 xcopy /y /d "%ProjectDir%..\platform\graphics\texmap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 64 xcopy /y /d "%ProjectDir%..\platform\mock\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 65 xcopy /y /d "%ProjectDir%..\platform\text\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 66 xcopy /y /d "%ProjectDir%..\platform\text\icu\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 67 xcopy /y /d "%ProjectDir%..\platform\text\transcoder\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 68 xcopy /y /d "%ProjectDir%..\platform\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 69 xcopy /y /d "%ProjectDir%..\platform\network\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 70 xcopy /y /d "%ProjectDir%..\platform\network\%2\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 71 xcopy /y /d "%ProjectDir%..\platform\spi\cg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 72 xcopy /y /d "%ProjectDir%..\platform\sql\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 73 xcopy /y /d "%ProjectDir%..\platform\cairo\cairo\src\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 74 xcopy /y /d "%ProjectDir%..\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 75 xcopy /y /d "%ProjectDir%..\bindings\generic\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 76 xcopy /y /d "%ProjectDir%..\bindings\js\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 77 xcopy /y /d "%ProjectDir%..\page\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 78 xcopy /y /d "%ProjectDir%..\page\scrolling\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 79 xcopy /y /d "%ProjectDir%..\page\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 80 xcopy /y /d "%ProjectDir%..\page\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 81 xcopy /y /d "%ProjectDir%..\bridge\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 82 xcopy /y /d "%ProjectDir%..\bridge\c\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 83 xcopy /y /d "%ProjectDir%..\bridge\jsc\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 84 xcopy /y /d "%ProjectDir%..\plugins\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 85 xcopy /y /d "%ProjectDir%..\plugins\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 86 xcopy /y /d "%ProjectDir%..\rendering\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 87 xcopy /y /d "%ProjectDir%..\rendering\line\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 88 xcopy /y /d "%ProjectDir%..\rendering\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 89 xcopy /y /d "%ProjectDir%..\rendering\shapes\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 90 xcopy /y /d "%ProjectDir%..\rendering\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 91 xcopy /y /d "%ProjectDir%..\editing\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 92 xcopy /y /d "%ProjectDir%..\dom\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 93 xcopy /y /d "%ProjectDir%..\xml\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 94 xcopy /y /d "%ProjectDir%..\xml\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 95 xcopy /y /d "%ProjectDir%..\svg\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 96 xcopy /y /d "%ProjectDir%..\svg\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 97 xcopy /y /d "%ProjectDir%..\svg\properties\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 98 xcopy /y /d "%ProjectDir%..\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 99 xcopy /y /d "%ProjectDir%..\storage\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 100 xcopy /y /d "%ProjectDir%..\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 101 xcopy /y /d "%ProjectDir%..\workers\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" 102 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings" 103 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser" 104 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\runtime\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime" 105 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\masm\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm" 106 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\profiler\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler" 107 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\heap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap" 108 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector" 109 xcopy /y /d "%ProjectDir%..\ForwardingHeaders\yarr\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr" 18 @xcopy /y /d "%ProjectDir%..\config.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 19 @xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 20 @xcopy /y /d "%ProjectDir%..\Modules\filesystem\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 21 @xcopy /y /d "%ProjectDir%..\Modules\gamepad\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 22 @xcopy /y /d "%ProjectDir%..\Modules\geolocation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 23 @xcopy /y /d "%ProjectDir%..\Modules\indexeddb\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 24 @xcopy /y /d "%ProjectDir%..\Modules\mediacontrols\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 25 @xcopy /y /d "%ProjectDir%..\Modules\mediasource\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 26 @xcopy /y /d "%ProjectDir%..\Modules\navigatorcontentutils\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 27 @xcopy /y /d "%ProjectDir%..\Modules\notifications\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 28 @xcopy /y /d "%ProjectDir%..\Modules\quota\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 29 @xcopy /y /d "%ProjectDir%..\Modules\webdatabase\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 30 @xcopy /y /d "%ProjectDir%..\Modules\websockets\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 31 @xcopy /y /d "%ProjectDir%..\accessibility\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 32 @xcopy /y /d "%ProjectDir%..\accessibility\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 33 @xcopy /y /d "%ProjectDir%..\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 34 @xcopy /y /d "%ProjectDir%..\loader\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 35 @xcopy /y /d "%ProjectDir%..\loader\appcache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 36 @xcopy /y /d "%ProjectDir%..\loader\archive\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 37 @xcopy /y /d "%ProjectDir%..\loader\archive\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 38 @xcopy /y /d "%ProjectDir%..\loader\cache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 39 @xcopy /y /d "%ProjectDir%..\loader\icon\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 40 @xcopy /y /d "%ProjectDir%..\history\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 41 @xcopy /y /d "%ProjectDir%..\history\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 42 @xcopy /y /d "%ProjectDir%..\html\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 43 @xcopy /y /d "%ProjectDir%..\html\forms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 44 @xcopy /y /d "%ProjectDir%..\html\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 45 @xcopy /y /d "%ProjectDir%..\html\shadow\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 46 @xcopy /y /d "%ProjectDir%..\html\track\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 47 @xcopy /y /d "%ProjectDir%..\css\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 48 @xcopy /y /d "%ProjectDir%..\platform\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 49 @xcopy /y /d "%ProjectDir%..\platform\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 50 @xcopy /y /d "%ProjectDir%..\platform\audio\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 51 @xcopy /y /d "%ProjectDir%..\platform\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 52 @xcopy /y /d "%ProjectDir%..\platform\cf\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 53 @xcopy /y /d "%ProjectDir%..\platform\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 54 @xcopy /y /d "%ProjectDir%..\platform\graphics\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 55 @xcopy /y /d "%ProjectDir%..\platform\graphics\filters\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 56 @xcopy /y /d "%ProjectDir%..\platform\graphics\transforms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 57 @xcopy /y /d "%ProjectDir%..\platform\graphics\ca\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 58 @xcopy /y /d "%ProjectDir%..\platform\graphics\ca\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 59 @xcopy /y /d "%ProjectDir%..\platform\graphics\gstreamer\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 60 @xcopy /y /d "%ProjectDir%..\platform\graphics\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 61 @xcopy /y /d "%ProjectDir%..\platform\graphics\win\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 62 @xcopy /y /d "%ProjectDir%..\platform\graphics\opentype\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 63 @xcopy /y /d "%ProjectDir%..\platform\graphics\opengl\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 64 @xcopy /y /d "%ProjectDir%..\platform\graphics\texmap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 65 @xcopy /y /d "%ProjectDir%..\platform\mock\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 66 @xcopy /y /d "%ProjectDir%..\platform\text\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 67 @xcopy /y /d "%ProjectDir%..\platform\text\icu\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 68 @xcopy /y /d "%ProjectDir%..\platform\text\transcoder\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 69 @xcopy /y /d "%ProjectDir%..\platform\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 70 @xcopy /y /d "%ProjectDir%..\platform\network\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 71 @xcopy /y /d "%ProjectDir%..\platform\network\%2\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 72 @xcopy /y /d "%ProjectDir%..\platform\spi\cg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 73 @xcopy /y /d "%ProjectDir%..\platform\sql\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 74 @xcopy /y /d "%ProjectDir%..\platform\cairo\cairo\src\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 75 @xcopy /y /d "%ProjectDir%..\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 76 @xcopy /y /d "%ProjectDir%..\bindings\generic\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 77 @xcopy /y /d "%ProjectDir%..\bindings\js\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 78 @xcopy /y /d "%ProjectDir%..\page\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 79 @xcopy /y /d "%ProjectDir%..\page\scrolling\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 80 @xcopy /y /d "%ProjectDir%..\page\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 81 @xcopy /y /d "%ProjectDir%..\page\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 82 @xcopy /y /d "%ProjectDir%..\bridge\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 83 @xcopy /y /d "%ProjectDir%..\bridge\c\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 84 @xcopy /y /d "%ProjectDir%..\bridge\jsc\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 85 @xcopy /y /d "%ProjectDir%..\plugins\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 86 @xcopy /y /d "%ProjectDir%..\plugins\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 87 @xcopy /y /d "%ProjectDir%..\rendering\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 88 @xcopy /y /d "%ProjectDir%..\rendering\line\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 89 @xcopy /y /d "%ProjectDir%..\rendering\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 90 @xcopy /y /d "%ProjectDir%..\rendering\shapes\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 91 @xcopy /y /d "%ProjectDir%..\rendering\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 92 @xcopy /y /d "%ProjectDir%..\editing\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 93 @xcopy /y /d "%ProjectDir%..\dom\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 94 @xcopy /y /d "%ProjectDir%..\xml\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>null 95 @xcopy /y /d "%ProjectDir%..\xml\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 96 @xcopy /y /d "%ProjectDir%..\svg\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 97 @xcopy /y /d "%ProjectDir%..\svg\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 98 @xcopy /y /d "%ProjectDir%..\svg\properties\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 99 @xcopy /y /d "%ProjectDir%..\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 100 @xcopy /y /d "%ProjectDir%..\storage\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 101 @xcopy /y /d "%ProjectDir%..\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 102 @xcopy /y /d "%ProjectDir%..\workers\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul 103 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings" >nul 2>nul 104 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser" >nul 2>nul 105 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\runtime\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime" >nul 2>nul 106 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\masm\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm" >nul 2>nul 107 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\profiler\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler" >nul 2>nul 108 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\heap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap" >nul 2>nul 109 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector" >nul 2>nul 110 @xcopy /y /d "%ProjectDir%..\ForwardingHeaders\yarr\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr" >nul 2>nul 110 111 111 xcopy /y /d "%ProjectDir%..\testing\js\WebCoreTestSupport.h" "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport" 112 @xcopy /y /d "%ProjectDir%..\testing\js\WebCoreTestSupport.h" "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport" >nul 2>nul 112 113 113 set DerivedSourcesDirectory=%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources114 set PrivateHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private\WebCore114 @set DerivedSourcesDirectory=%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources 115 @set PrivateHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private\WebCore 115 116 116 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"117 @if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed" -
trunk/Source/WebCore/WebCore.vcxproj/copyWebCoreResourceFiles.cmd
r167145 r180676 1 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" 2 xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\Localizable.strings" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" 3 xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\mediaControlsLocalizedStrings.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" 4 xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.css" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources" 5 xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources" 1 echo Copying Resource Files... 2 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" 3 @xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\Localizable.strings" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" >nul 4 @xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\mediaControlsLocalizedStrings.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" >nul 5 @xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.css" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources" >nul 6 @xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources" >nul -
trunk/Source/WebInspectorUI/ChangeLog
r180625 r180676 1 2015-02-26 Brent Fulgham <bfulgham@apple.com> 2 3 [Win] Make build logs more legible by reducing noise 4 https://bugs.webkit.org/show_bug.cgi?id=142034 5 6 Reviewed by Alexey Proskuryakov. 7 8 Modify batch files, makefiles, and DOS commands to remove 9 uninteresting/unhelpful output. 10 11 * WebInspectorUI.vcxproj/WebInspectorUI.make: 12 1 13 2015-02-25 Joseph Pecoraro <pecoraro@apple.com> 2 14 -
trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make
r172929 r180676 1 1 make: 2 - mkdir "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"3 perl build-webinspectorui.pl "%ConfigurationBuildDir%" "%WebKit_Libraries%" windows "%PlatformArchitecture%" "%OFFICIAL_BUILD%"2 -@mkdir "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI" 3 @perl build-webinspectorui.pl "%ConfigurationBuildDir%" "%WebKit_Libraries%" windows "%PlatformArchitecture%" "%OFFICIAL_BUILD%" 4 4 if errorlevel 1 exit 1 5 5 6 xcopy /y /e "..\Localizations\en.lproj\*" "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"6 @xcopy /y /e "..\Localizations\en.lproj\*" "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI" 7 7 if errorlevel 1 exit 1 8 8 -
trunk/Source/WebKit/ChangeLog
r180653 r180676 1 2015-02-26 Brent Fulgham <bfulgham@apple.com> 2 3 [Win] Make build logs more legible by reducing noise 4 https://bugs.webkit.org/show_bug.cgi?id=142034 5 6 Reviewed by Alexey Proskuryakov. 7 8 Modify batch files, makefiles, and DOS commands to remove 9 uninteresting/unhelpful output. 10 11 * WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd: 12 * WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd: 13 * WebKit.vcxproj/WebKit/WebKitPostBuild.cmd: 14 * WebKit.vcxproj/WebKit/WebKitPreBuild.cmd: 15 * WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd: 16 1 17 2015-02-25 Brent Fulgham <bfulgham@apple.com> 2 18 -
trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd
r141924 r180676 1 %SystemDrive%\cygwin\bin\which.exe bash 1 %SystemDrive%\cygwin\bin\which.exe bash >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c -
trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd
r170937 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c … … 6 6 echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed" 7 7 8 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebKit\%PROJECTNAME%"8 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebKit\%PROJECTNAME%" 9 9 perl "%WEBKIT_LIBRARIES%\tools\scripts\auto-version.pl" "%INTDIR%" -
trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd
r171798 r180676 1 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebKit"1 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebKit" 2 2 3 3 set ResourcesDirectory=%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources 4 4 5 xcopy /y /d "%PROJECTDIR%\..\..\win\WebLocalizableStrings.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"6 xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitGraphics.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"7 xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitCOMAPI.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"8 xcopy /y /d "%PROJECTDIR%\..\..\win\WebPreferenceKeysPrivate.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"9 xcopy /y /d "%PROJECTDIR%\..\..\win\CFDictionaryPropertyBag.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"5 @xcopy /y /d "%PROJECTDIR%\..\..\win\WebLocalizableStrings.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 6 @xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitGraphics.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 7 @xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitCOMAPI.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 8 @xcopy /y /d "%PROJECTDIR%\..\..\win\WebPreferenceKeysPrivate.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 9 @xcopy /y /d "%PROJECTDIR%\..\..\win\CFDictionaryPropertyBag.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 10 10 11 xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npapi.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"12 xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npfunctions.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"13 xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"14 xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime_internal.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"15 xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\nptypes.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"11 @xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npapi.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 12 @xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npfunctions.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 13 @xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 14 @xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime_internal.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 15 @xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\nptypes.h" "%CONFIGURATIONBUILDDIR%\include\WebKit" 16 16 17 17 echo Copying resources... 18 mkdir "%ResourcesDirectory%" 2>NUL19 xcopy /y /d "%PROJECTDIR%\..\..\win\WebKit.resources\Info.plist" "%ResourcesDirectory%" >NUL18 @mkdir "%ResourcesDirectory%" 2>NUL 19 @xcopy /y /d "%PROJECTDIR%\..\..\win\WebKit.resources\Info.plist" "%ResourcesDirectory%" >NUL 20 20 21 21 perl "%WEBKIT_LIBRARIES%\tools\scripts\version-stamp.pl" "%INTDIR%" "%TARGETPATH%" -
trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPreBuild.cmd
r170937 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c 4 4 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed" 5 5 if errorlevel 1 exit 1 6 echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"6 @echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed" 7 7 8 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\JavaScriptCore"9 xcopy /y /d "%WEBKIT_LIBRARIES%\include\JavaScriptCore\*" "%CONFIGURATIONBUILDDIR%\include\JavaScriptCore"8 @mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\JavaScriptCore" 9 @xcopy /y /d "%WEBKIT_LIBRARIES%\include\JavaScriptCore\*" "%CONFIGURATIONBUILDDIR%\include\JavaScriptCore" 10 10 11 11 perl "%WEBKIT_LIBRARIES%\tools\scripts\auto-version.pl" "%INTDIR%" -
trunk/Source/WebKit/WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd
r170937 r180676 1 %SystemDrive%\cygwin\bin\which.exe perl 1 %SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul 2 2 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 3 3 cmd /c 4 4 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed" 5 5 if errorlevel 1 exit 1 6 echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"6 @echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed" -
trunk/WebKitLibraries/ChangeLog
r180641 r180676 1 2015-02-26 Brent Fulgham <bfulgham@apple.com> 2 3 [Win] Make build logs more legible by reducing noise 4 https://bugs.webkit.org/show_bug.cgi?id=142034 5 6 Reviewed by Alexey Proskuryakov. 7 8 Modify batch files, makefiles, and DOS commands to remove 9 uninteresting/unhelpful output. 10 11 * win/tools/vsprops/common.props: 12 1 13 2015-02-25 peavo@outlook.com <peavo@outlook.com> 2 14 -
trunk/WebKitLibraries/win/tools/vsprops/common.props
r173768 r180676 11 11 <IntDir>$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\</IntDir> 12 12 <LinkIncremental>false</LinkIncremental> 13 <NMakeBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 13 <NMakeBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 2>nul 14 14 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 15 15 set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir) … … 18 18 set OFFICIAL_BUILD=$(OFFICIAL_BUILD) 19 19 nmake /nologo -f $(ProjectName).make</NMakeBuildCommandLine> 20 <NMakeReBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 20 <NMakeReBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 2>nul 21 21 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 22 22 set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir) … … 26 26 nmake /nologo -f $(ProjectName).make clean 27 27 nmake /nologo -f $(ProjectName).make</NMakeReBuildCommandLine> 28 <NMakeCleanCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 28 <NMakeCleanCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 2>nul 29 29 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH% 30 30
Note:
See TracChangeset
for help on using the changeset viewer.