Browse Source

一个小问题

应该使用utils对象
Neil Yang 7 years ago
parent
commit
639705c705
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/vs2012.py

+ 1 - 1
tools/vs2012.py

@@ -134,7 +134,7 @@ def VS_add_HeadFiles(program, elem, project_path):
     ItemGroup = SubElement(elem, 'ItemGroup')
     ItemGroup = SubElement(elem, 'ItemGroup')
 
 
     filter_h_ItemGroup = SubElement(filter_project, 'ItemGroup')
     filter_h_ItemGroup = SubElement(filter_project, 'ItemGroup')
-    for f in building.source_list:
+    for f in utils.source_list:
         path = _make_path_relative(project_path, f)
         path = _make_path_relative(project_path, f)
         File = SubElement(ItemGroup, 'ClInclude')
         File = SubElement(ItemGroup, 'ClInclude')
         File.set('Include', path.decode(fs_encoding))
         File.set('Include', path.decode(fs_encoding))