4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 05:53:30 +08:00

17 lines
261 B
Python
Raw Normal View History

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