4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 12:33:32 +08:00
2017-10-09 14:22:08 +08:00

12 lines
276 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'applications')
src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = ['RT_USING_GUIENGINE'], CPPPATH = CPPPATH)
Return('group')