rt-thread-official/components/drivers/touch/SConscript

12 lines
255 B
Python
Raw Normal View History

2019-06-12 09:38:32 +08:00
# SConscript for touch framework
from building import *
cwd = GetCurrentDir()
src = ['touch.c']
CPPPATH = [cwd, cwd + '/../include']
group = DefineGroup('Touch', src, depend = ['RT_USING_TOUCH', 'RT_USING_DEVICE'], CPPPATH = CPPPATH)
Return('group')