4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 12:07:23 +08:00

14 lines
282 B
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = GetCurrentDir()
2021-12-22 11:03:03 +08:00
CFLAGS = ' -c -ffunction-sections'
2021-12-22 11:03:03 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH, CFLAGS=CFLAGS)
Return('group')