4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 14:03:30 +08:00
2020-12-25 14:33:03 +08:00

16 lines
219 B
Python

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