2017-08-08 11:56:50 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'applications')
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
|
2018-01-10 15:08:14 +08:00
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
2017-08-08 11:56:50 +08:00
|
|
|
|
|
|
|
Return('group')
|