rt-thread/bsp/gd32vf103v-eval/board/SConscript

15 lines
233 B
Python
Raw Normal View History

2019-07-24 17:03:26 +08:00
# RT-Thread building script for component
from building import *
2019-07-24 19:25:39 +08:00
cwd = GetCurrentDir()
src = Split('''
board.c
trap_gcc.S
''')
2019-07-24 17:03:26 +08:00
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')