Merge "gen_msvs_vcxproj.sh: Avoid object name collisions."
This commit is contained in:
commit
f0a6a604fc
@ -156,6 +156,10 @@ generate_filter() {
|
|||||||
objf=$(echo ${f%.*}.obj | sed -e 's/^[\./]\+//g' -e 's,/,_,g')
|
objf=$(echo ${f%.*}.obj | sed -e 's/^[\./]\+//g' -e 's,/,_,g')
|
||||||
|
|
||||||
if ([ "$pat" == "asm" ] || [ "$pat" == "s" ]) && $asm_use_custom_step; then
|
if ([ "$pat" == "asm" ] || [ "$pat" == "s" ]) && $asm_use_custom_step; then
|
||||||
|
# Avoid object file name collisions, i.e. vpx_config.c and
|
||||||
|
# vpx_config.asm produce the same object file without
|
||||||
|
# this additional suffix.
|
||||||
|
objf=${objf%.obj}_asm.obj
|
||||||
open_tag CustomBuild \
|
open_tag CustomBuild \
|
||||||
Include=".\\$f"
|
Include=".\\$f"
|
||||||
for plat in "${platforms[@]}"; do
|
for plat in "${platforms[@]}"; do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user