rt-thread-official/bsp/qemu-vexpress-a9/drivers/SConscript

16 lines
319 B
Python
Raw Normal View History

2017-09-19 12:14:52 +08:00
from building import *
cwd = GetCurrentDir()
2017-10-17 09:53:16 +08:00
src = Glob('*.c')
2017-09-19 12:14:52 +08:00
CPPPATH = [cwd]
2017-10-21 23:26:30 +08:00
if not GetDepend('BSP_DRV_EMAC'):
SrcRemove(src, ['drv_lan9118.c'])
if not GetDepend('BSP_DRV_CLCD'):
SrcRemove(src, ['drv_clcd.c'])
2017-09-19 12:14:52 +08:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')