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
This commit is contained in:
James Zern 2014-02-04 20:42:03 -08:00
Родитель be34c188a1
Коммит 95c34c9053
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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