mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-16 19:38:56 +00:00
14 lines
308 B
Python
Executable File
14 lines
308 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')
|