2017-04-12 09:25:37 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'applications')
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
|
2017-10-09 10:55:44 +08:00
|
|
|
group = DefineGroup('Applications', src, depend = ['RT_USING_GUIENGINE'], CPPPATH = CPPPATH)
|
2017-04-12 09:25:37 +08:00
|
|
|
|
|
|
|
Return('group')
|