mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-18 10:08:53 +00:00
23 lines
459 B
Python
23 lines
459 B
Python
|
|
Import('AIC_ROOT')
|
||
|
|
Import('PRJ_KERNEL')
|
||
|
|
Import('rtconfig')
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
src = Glob('*.c')
|
||
|
|
CPPPATH = []
|
||
|
|
|
||
|
|
CPPPATH.append(cwd)
|
||
|
|
CPPPATH.append(cwd + '/bt_core')
|
||
|
|
|
||
|
|
src += Glob('bt_os_rtt.c')
|
||
|
|
src += Glob('bt_os.c')
|
||
|
|
src += Glob('bt_core/*.c')
|
||
|
|
|
||
|
|
CPPDEFINES = ['RTT']
|
||
|
|
myccflags = (' -w')
|
||
|
|
|
||
|
|
group = DefineGroup("bt8858a", src, depend = ['AIC_BT_BT8858A'], CPPPATH = CPPPATH, CPPDEFINES=CPPDEFINES, LOCAL_CFLAGS=myccflags)
|
||
|
|
|
||
|
|
Return('group')
|