mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
15 lines
369 B
Python
15 lines
369 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = []
|
|
src = []
|
|
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_RTP_TEST') and GetDepend('AIC_DISP_DE_DRV'):
|
|
src += Glob('test_rtp_calibrate.c')
|
|
src += Glob('test_rtp_draw.c')
|
|
|
|
group = DefineGroup('test-rtp', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|