4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 01:43:31 +08:00
2021-08-21 14:10:33 +08:00

15 lines
204 B
Python

from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
# add general drivers
src = Split('''
board.c
''')
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')