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

10 lines
195 B
Python
Raw Normal View History

2018-05-29 10:55:42 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.S')
CPPPATH = [cwd]
2020-12-19 16:49:11 +08:00
group = DefineGroup('Drivers', src, depend = ['BSP_DRV_AUDIO'], CPPPATH = CPPPATH)
2018-05-29 10:55:42 +08:00
Return('group')