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

14 lines
252 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('AIC_TP_DRV_TEST'):
src = Glob('*.c')
group = DefineGroup('test-ctp', src, depend = [''], CPPPATH = CPPPATH)
Return('group')