Files
luban-lite-t3e-pro/bsp/examples/test-ctp/SConscript

15 lines
255 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 = []
if GetDepend('AIC_TP_DRV_TEST'):
2024-09-03 11:16:08 +08:00
src = Glob('*.c')
2023-08-30 16:21:18 +08:00
2024-09-03 11:16:08 +08:00
group = DefineGroup('test-touch', src, depend = [''], CPPPATH = CPPPATH)
2023-08-30 16:21:18 +08:00
Return('group')