| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 ## | 2 ## |
| 3 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 3 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 4 ## | 4 ## |
| 5 ## Use of this source code is governed by a BSD-style license | 5 ## Use of this source code is governed by a BSD-style license |
| 6 ## that can be found in the LICENSE file in the root of the source | 6 ## that can be found in the LICENSE file in the root of the source |
| 7 ## tree. An additional intellectual property rights grant can be found | 7 ## tree. An additional intellectual property rights grant can be found |
| 8 ## in the file PATENTS. All contributing project authors may | 8 ## in the file PATENTS. All contributing project authors may |
| 9 ## be found in the AUTHORS file in the root of the source tree. | 9 ## be found in the AUTHORS file in the root of the source tree. |
| 10 ## | 10 ## |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 if [ "$pat" == "asm" ] && $asm_use_custom_step; then | 149 if [ "$pat" == "asm" ] && $asm_use_custom_step; then |
| 150 for plat in "${platforms[@]}"; do | 150 for plat in "${platforms[@]}"; do |
| 151 for cfg in Debug Release; do | 151 for cfg in Debug Release; do |
| 152 open_tag FileConfiguration \ | 152 open_tag FileConfiguration \ |
| 153 Name="${cfg}|${plat}" \ | 153 Name="${cfg}|${plat}" \ |
| 154 | 154 |
| 155 tag Tool \ | 155 tag Tool \ |
| 156 Name="VCCustomBuildTool" \ | 156 Name="VCCustomBuildTool" \ |
| 157 Description="Assembling \$(InputFileName)" \ | 157 Description="Assembling \$(InputFileName)" \ |
| 158 CommandLine="$(eval echo \$asm_${cfg}_cmdline) -
o \$(IntDir)$objf" \ | 158 CommandLine="$(eval echo \$asm_${cfg}_cmdline) -
o \$(IntDir)\\$objf" \ |
| 159 Outputs="\$(IntDir)$objf" \ | 159 Outputs="\$(IntDir)\\$objf" \ |
| 160 | 160 |
| 161 close_tag FileConfiguration | 161 close_tag FileConfiguration |
| 162 done | 162 done |
| 163 done | 163 done |
| 164 fi | 164 fi |
| 165 if [ "$pat" == "c" ] || [ "$pat" == "cc" ] ; then | 165 if [ "$pat" == "c" ] || [ "$pat" == "cc" ] ; then |
| 166 for plat in "${platforms[@]}"; do | 166 for plat in "${platforms[@]}"; do |
| 167 for cfg in Debug Release; do | 167 for cfg in Debug Release; do |
| 168 open_tag FileConfiguration \ | 168 open_tag FileConfiguration \ |
| 169 Name="${cfg}|${plat}" \ | 169 Name="${cfg}|${plat}" \ |
| 170 | 170 |
| 171 tag Tool \ | 171 tag Tool \ |
| 172 Name="VCCLCompilerTool" \ | 172 Name="VCCLCompilerTool" \ |
| 173 ObjectFile="\$(IntDir)$objf" \ | 173 ObjectFile="\$(IntDir)\\$objf" \ |
| 174 | 174 |
| 175 close_tag FileConfiguration | 175 close_tag FileConfiguration |
| 176 done | 176 done |
| 177 done | 177 done |
| 178 fi | 178 fi |
| 179 close_tag File | 179 close_tag File |
| 180 | 180 |
| 181 break | 181 break |
| 182 fi | 182 fi |
| 183 done | 183 done |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 sed -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile} | 583 sed -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile} |
| 584 | 584 |
| 585 exit | 585 exit |
| 586 <!-- | 586 <!-- |
| 587 TODO: Add any files not captured by filters. | 587 TODO: Add any files not captured by filters. |
| 588 <File | 588 <File |
| 589 RelativePath=".\ReadMe.txt" | 589 RelativePath=".\ReadMe.txt" |
| 590 > | 590 > |
| 591 </File> | 591 </File> |
| 592 --> | 592 --> |
| OLD | NEW |