mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 23:59:32 +08:00
14 lines
285 B
Python
14 lines
285 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = GetCurrentDir()
|
|
|
|
CCFLAGS = ' -c -ffunction-sections'
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH, CCFLAGS=CCFLAGS)
|
|
|
|
Return('group')
|