4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 22:29:22 +08:00

10 lines
197 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]
group = DefineGroup('drv_audio', src, depend = ['BSP_DRV_AUDIO'], CPPPATH = CPPPATH)
Return('group')