mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 08:59:22 +08:00
10 lines
197 B
Python
10 lines
197 B
Python
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')
|