|
|
@ -106,7 +106,6 @@ class Vs2010Backend(backends.Backend): |
|
|
|
infilelist = genlist.get_inputs() |
|
|
|
infilelist = genlist.get_inputs() |
|
|
|
outfilelist = genlist.get_outputs() |
|
|
|
outfilelist = genlist.get_outputs() |
|
|
|
exe_arr = self.exe_object_to_cmd_array(exe) |
|
|
|
exe_arr = self.exe_object_to_cmd_array(exe) |
|
|
|
base_args = generator.get_arglist() |
|
|
|
|
|
|
|
idgroup = ET.SubElement(parent_node, 'ItemGroup') |
|
|
|
idgroup = ET.SubElement(parent_node, 'ItemGroup') |
|
|
|
for i in range(len(infilelist)): |
|
|
|
for i in range(len(infilelist)): |
|
|
|
if len(infilelist) == len(outfilelist): |
|
|
|
if len(infilelist) == len(outfilelist): |
|
|
@ -115,6 +114,7 @@ class Vs2010Backend(backends.Backend): |
|
|
|
sole_output = '' |
|
|
|
sole_output = '' |
|
|
|
curfile = infilelist[i] |
|
|
|
curfile = infilelist[i] |
|
|
|
infilename = os.path.join(down, curfile.rel_to_builddir(self.build_to_src)) |
|
|
|
infilename = os.path.join(down, curfile.rel_to_builddir(self.build_to_src)) |
|
|
|
|
|
|
|
base_args = generator.get_arglist(infilename) |
|
|
|
outfiles_rel = genlist.get_outputs_for(curfile) |
|
|
|
outfiles_rel = genlist.get_outputs_for(curfile) |
|
|
|
outfiles = [os.path.join(target_private_dir, of) for of in outfiles_rel] |
|
|
|
outfiles = [os.path.join(target_private_dir, of) for of in outfiles_rel] |
|
|
|
generator_output_files += outfiles |
|
|
|
generator_output_files += outfiles |
|
|
|