This commit is contained in:
刘可亮
2024-01-27 08:47:24 +08:00
parent d3bd993b5f
commit 9f7ba67007
2345 changed files with 74421 additions and 76616 deletions

View File

@@ -10,6 +10,14 @@ if GetDepend('AIC_TOUCH_PANEL_GT911'):
CPPPATH.append(cwd + '/gt911/inc')
src += Glob('gt911/src/*.c')
group = DefineGroup('gt911', src, depend = [''], CPPPATH = CPPPATH)
if GetDepend('AIC_TOUCH_PANEL_FT7411'):
CPPPATH.append(cwd + '/ft7411/inc')
src += Glob('ft7411/src/*.c')
if GetDepend('AIC_TOUCH_PANEL_GSL1680'):
CPPPATH.append(cwd + '/gsl1680/inc')
src += Glob('gsl1680/src/*.c')
group = DefineGroup('touch', src, depend = [''], CPPPATH = CPPPATH)
Return('group')