mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 02:43:32 +08:00
16 lines
262 B
Python
16 lines
262 B
Python
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = os.path.join(str(Dir('#')), 'app')
|
||
|
|
||
|
src = Glob('./src/*.c')
|
||
|
|
||
|
path = [cwd + '/inc',
|
||
|
cwd + '/..',
|
||
|
]
|
||
|
|
||
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|