rt-thread-official/bsp/thead-smart/applications/SConscript

14 lines
282 B
Python
Raw Permalink 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')