mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 05:19:23 +08:00
14 lines
307 B
Python
14 lines
307 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 = [''], CPPPATH = CPPPATH,
|
|
CPPDEFINES = ['BOOT_PROCESSOR'])
|
|
|
|
Return('group')
|