4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 09:19:24 +08:00
2021-09-07 10:45:38 +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')