rt-thread-official/bsp/sparkfun-redv/drivers/SConscript

15 lines
274 B
Python
Raw Normal View History

2020-10-31 15:40:38 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'drivers')
# add the general drvers.
src = Glob("*.c") + Glob("*gcc.S")
2020-10-31 15:40:38 +08:00
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')