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')
|