From 95c34c9053fa79812a3eab3cc34b56cc70007d6d Mon Sep 17 00:00:00 2001 From: James Zern Date: Tue, 4 Feb 2014 20:42:03 -0800 Subject: gen_msvs_proj: add trailing \ to IntDir older versions of visual studio did not include the trailing \. this moves the objects to their intended location: the project subdirectory Change-Id: I244479cdebf6b3f03bed6dbfca82e7fb4542f0de --- build/make/gen_msvs_proj.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/make/gen_msvs_proj.sh b/build/make/gen_msvs_proj.sh index fc5011bef..7df0334c6 100755 --- a/build/make/gen_msvs_proj.sh +++ b/build/make/gen_msvs_proj.sh @@ -155,8 +155,8 @@ generate_filter() { tag Tool \ Name="VCCustomBuildTool" \ Description="Assembling \$(InputFileName)" \ - CommandLine="$(eval echo \$asm_${cfg}_cmdline) -o \$(IntDir)$objf" \ - Outputs="\$(IntDir)$objf" \ + CommandLine="$(eval echo \$asm_${cfg}_cmdline) -o \$(IntDir)\\$objf" \ + Outputs="\$(IntDir)\\$objf" \ close_tag FileConfiguration done @@ -170,7 +170,7 @@ generate_filter() { tag Tool \ Name="VCCLCompilerTool" \ - ObjectFile="\$(IntDir)$objf" \ + ObjectFile="\$(IntDir)\\$objf" \ close_tag FileConfiguration done -- cgit v1.2.3