mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
13 lines
288 B
Python
13 lines
288 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = []
|
|
src = []
|
|
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_PM_DRV_TEST'):
|
|
src += Glob('*.c')
|
|
|
|
group = DefineGroup('test-se-pm', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group') |