mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
13 lines
241 B
Python
13 lines
241 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('realtek', src, depend = ['AIC_BT_REALTEK'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|