10 lines
188 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
2019-04-09 18:17:33 +08:00
CPPPATH = [str(), cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')