提交 2ad82e74 编写于 作者: B Bernard Xiong

Merge pull request #376 from grissiom/tools-next

SCons: allow set object files in DefineGroup
......@@ -364,9 +364,10 @@ def DefineGroup(name, src, depend, **parameters):
if group.has_key('LIBPATH'):
Env.Append(LIBPATH = group['LIBPATH'])
objs = Env.Object(group['src'])
if group.has_key('LIBRARY'):
objs = Env.Library(name, objs)
objs = Env.Library(name, group['src'])
else:
objs = group['src']
# merge group
for g in Projects:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册