rt-thread/bsp/hifive1/drivers/SConscript

19 lines
334 B
Python
Raw Normal View History

2017-07-16 20:37:03 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'drivers')
# add the general drvers.
src = Glob("*.c")
# add Ethernet drvers.
#if GetDepend('RT_USING_LED'):
# src += ['led.c']
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')