4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 03:33:30 +08:00
2018-10-10 09:28:40 +08:00

16 lines
247 B
Python

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