rt-thread/bsp/stm32/stm32f407-robomaster-c/applications/SConscript

11 lines
212 B
Python
Raw Normal View History

2021-06-29 20:47:02 +08:00
import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))]
2021-06-30 19:16:06 +08:00
src = Glob('*.c')
2021-06-29 20:47:02 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')