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