2013-01-08 22:40:58 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
2014-07-13 15:17:26 +08:00
|
|
|
cwd = os.path.join(str(Dir('#')), 'applications')
|
|
|
|
src = Glob('*.c')
|
2013-01-08 22:40:58 +08:00
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
|
2014-07-13 15:17:26 +08:00
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
Return('group')
|