fix bug in vs.py(use the env not the group to get information)

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2419 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
goprife@gmail.com 2012-11-16 07:13:27 +00:00
parent cabee09a32
commit 9a89567e8f
1 changed files with 29 additions and 49 deletions

View File

@ -33,10 +33,6 @@ def VSProject(target, script):
out = file(target, 'wb') out = file(target, 'wb')
out.write('<?xml version="1.0" encoding="UTF-8"?>\r\n') out.write('<?xml version="1.0" encoding="UTF-8"?>\r\n')
CPPPATH = []
CPPDEFINES = []
LINKFLAGS = ''
CCFLAGS = ''
ProjectFiles = [] ProjectFiles = []
# add group # add group
@ -47,59 +43,43 @@ def VSProject(target, script):
for group in script: for group in script:
group_xml = VS_AddGroup(ProjectFiles, elem, group['name'], group['src'], project_path) group_xml = VS_AddGroup(ProjectFiles, elem, group['name'], group['src'], project_path)
# get each include path
if group.has_key('CPPPATH') and group['CPPPATH']:
if CPPPATH:
CPPPATH += group['CPPPATH']
else:
CPPPATH += group['CPPPATH']
# get each group's definitions
if group.has_key('CPPDEFINES') and group['CPPDEFINES']:
if CPPDEFINES:
CPPDEFINES += group['CPPDEFINES']
else:
CPPDEFINES += group['CPPDEFINES']
# get each group's link flags
if group.has_key('LINKFLAGS') and group['LINKFLAGS']:
if LINKFLAGS:
LINKFLAGS += ' ' + group['LINKFLAGS']
else:
LINKFLAGS += group['LINKFLAGS']
# remove repeat path # write head include path
paths = set() if building.Env.has_key('CPPPATH'):
for path in CPPPATH: cpp_path = building.Env['CPPPATH']
inc = _make_path_relative(project_path, os.path.normpath(path)) paths = set()
paths.add(inc) #.replace('\\', '/') for path in cpp_path:
inc = _make_path_relative(project_path, os.path.normpath(path))
paths.add(inc) #.replace('\\', '/')
paths = [i for i in paths] paths = [i for i in paths]
paths.sort() paths.sort()
CPPPATH = string.join(paths, ';') cpp_path = ';'.join(paths)
# write include path, definitions
for elem in tree.iter(tag='Tool'):
if elem.attrib['Name'] == 'VCCLCompilerTool':
#print elem.tag, elem.attrib
break
elem.set('AdditionalIncludeDirectories', CPPPATH)
definitions = ';'.join(building.Env['CPPDEFINES']) # write include path, definitions
elem.set('PreprocessorDefinitions', definitions) for elem in tree.iter(tag='Tool'):
if elem.attrib['Name'] == 'VCCLCompilerTool':
#print elem.tag, elem.attrib
break
elem.set('AdditionalIncludeDirectories', cpp_path)
# write cppdefinitons flags
if building.Env.has_key('CPPDEFINES'):
definitions = ';'.join(building.Env['CPPDEFINES'])
elem.set('PreprocessorDefinitions', definitions)
# write link flags # write link flags
# write lib dependence # write lib dependence
for elem in tree.iter(tag='Tool'): if building.Env.has_key('LIBS'):
if elem.attrib['Name'] == 'VCLinkerTool': for elem in tree.iter(tag='Tool'):
break if elem.attrib['Name'] == 'VCLinkerTool':
libs_with_extention = [i+'.lib' for i in building.Env['LIBS']] break
libs = ' '.join(libs_with_extention) libs_with_extention = [i+'.lib' for i in building.Env['LIBS']]
elem.set('AdditionalDependencies', libs) libs = ' '.join(libs_with_extention)
elem.set('AdditionalDependencies', libs)
# write lib include path
if building.Env.has_key('LIBPATH'): if building.Env.has_key('LIBPATH'):
#if building.Env['LIBPATH']:
lib_path = building.Env['LIBPATH'] lib_path = building.Env['LIBPATH']
paths = set() paths = set()
for path in lib_path: for path in lib_path: