4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 07:33:32 +08:00

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')