Files
luban-lite-t3e-pro/bsp/examples_bare/test-rtp/SConscript
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

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')