Fix post-build steps when spaces appear in directory names

TRAC #18901 Issue=245 Signed-off-by: Nicolas Capens Signed-off-by: Daniel Koch git-svn-id: https://angleproject.googlecode.com/svn/trunk@897 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent 4d04f90d
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
/> />
<Tool <Tool
Name="VCPostBuildEventTool" Name="VCPostBuildEventTool"
CommandLine="xcopy /D /Y basemap.tga $(OutDir)&#x0D;&#x0A;xcopy /D /Y lightmap.tga $(OutDir)" CommandLine="xcopy /D /Y basemap.tga &quot;$(OutDir)&quot;&#x0D;&#x0A;xcopy /D /Y lightmap.tga &quot;$(OutDir)&quot;&#x0D;&#x0A;"
/> />
</Configuration> </Configuration>
<Configuration <Configuration
...@@ -168,7 +168,7 @@ ...@@ -168,7 +168,7 @@
/> />
<Tool <Tool
Name="VCPostBuildEventTool" Name="VCPostBuildEventTool"
CommandLine="xcopy /D /Y basemap.tga $(OutDir)&#x0D;&#x0A;xcopy /D /Y lightmap.tga $(OutDir)" CommandLine="xcopy /D /Y basemap.tga &quot;$(OutDir)&quot;&#x0D;&#x0A;xcopy /D /Y lightmap.tga &quot;$(OutDir)&quot;&#x0D;&#x0A;"
/> />
</Configuration> </Configuration>
</Configurations> </Configurations>
......
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
/> />
<Tool <Tool
Name="VCPostBuildEventTool" Name="VCPostBuildEventTool"
CommandLine="xcopy /D /Y smoke.tga $(outDir)" CommandLine="xcopy /D /Y smoke.tga &quot;$(outDir)&quot;"
/> />
</Configuration> </Configuration>
<Configuration <Configuration
...@@ -168,7 +168,7 @@ ...@@ -168,7 +168,7 @@
/> />
<Tool <Tool
Name="VCPostBuildEventTool" Name="VCPostBuildEventTool"
CommandLine="xcopy /D /Y smoke.tga $(outDir)" CommandLine="xcopy /D /Y smoke.tga &quot;$(outDir)&quot;"
/> />
</Configuration> </Configuration>
</Configurations> </Configurations>
......
#define MAJOR_VERSION 1 #define MAJOR_VERSION 1
#define MINOR_VERSION 0 #define MINOR_VERSION 0
#define BUILD_VERSION 0 #define BUILD_VERSION 0
#define BUILD_REVISION 895 #define BUILD_REVISION 897
#define STRINGIFY(x) #x #define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x) #define MACRO_STRINGIFY(x) STRINGIFY(x)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment