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

16 lines
315 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = []
if GetDepend('AIC_TOUCH_PANEL_GT911'):
CPPPATH.append(cwd + '/gt911/inc')
src += Glob('gt911/src/*.c')
group = DefineGroup('gt911', src, depend = [''], CPPPATH = CPPPATH)
Return('group')