rt-thread-official/bsp/nuvoton_m487/applications/SConscript

12 lines
247 B
Python
Raw Normal View History

2018-11-19 10:47:35 +08:00
# RT-Thread building script for component
2018-11-19 09:49:32 +08:00
from building import *
2018-11-19 10:47:35 +08:00
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
2018-11-19 09:49:32 +08:00
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')