rt-thread/bsp/hc32f4a0/board/SConscript

16 lines
219 B
Python
Raw Normal View History

2020-12-25 14:33:03 +08:00
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
# add general drivers
src = Split('''
board.c
board_config.c
''')
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')