Files
luban-lite/bsp/examples_bare/test-rtp/SConscript

15 lines
336 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
2024-04-03 16:40:57 +08:00
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_RTP_TEST'):
2023-08-30 16:21:18 +08:00
src += Glob('test_rtp_calibrate.c')
src += Glob('test_rtp_draw.c')
group = DefineGroup('test-rtp', src, depend = [''], CPPPATH = CPPPATH)
Return('group')