mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 12:13:36 +08:00
12 lines
241 B
Python
12 lines
241 B
Python
|
# RT-Thread building script for component
|
||
|
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c') + Glob('*.S')
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('drv_audio', src, depend = ['RT_USING_AUDIO'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|