summaryrefslogtreecommitdiff
path: root/build/make
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-02-04 20:42:03 -0800
committerJames Zern <jzern@google.com>2014-02-04 20:42:03 -0800
commit95c34c9053fa79812a3eab3cc34b56cc70007d6d (patch)
treea3e534901928c02e0ef65bd4b8cd5e64f34b2a8e /build/make
parentbe34c188a158264a20989f29420952e423af5fd9 (diff)
downloadlibvpx-95c34c9053fa79812a3eab3cc34b56cc70007d6d.tar
libvpx-95c34c9053fa79812a3eab3cc34b56cc70007d6d.tar.gz
libvpx-95c34c9053fa79812a3eab3cc34b56cc70007d6d.tar.bz2
libvpx-95c34c9053fa79812a3eab3cc34b56cc70007d6d.zip
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
Diffstat (limited to 'build/make')
-rwxr-xr-xbuild/make/gen_msvs_proj.sh6
1 files 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