2014-07-13 14:13:39 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'applications')
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
|
2015-01-05 11:19:42 +08:00
|
|
|
group = DefineGroup('Applications', src,
|
|
|
|
depend = [''], CPPPATH = CPPPATH,
|
|
|
|
CPPDEFINES = ['BOOT_PROCESSOR'])
|
2014-07-13 14:13:39 +08:00
|
|
|
|
|
|
|
Return('group')
|