12345678910111213141516171819 |
- from building import *
- cwd = GetCurrentDir()
- src = Glob('*.c') + Glob('*.cpp')
- CPPPATH = [cwd, str(Dir('#'))]
- group = DefineGroup('driver', src, depend = [''], CPPPATH = CPPPATH)
- # build for sub-directory
- list = os.listdir(cwd)
- objs = []
- for d in list:
- path = os.path.join(cwd, d)
- if os.path.isfile(os.path.join(path, 'SConscript')):
- objs = objs + SConscript(os.path.join(d, 'SConscript'))
- group = group + objs
- Return('group')
|