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

12 lines
262 B
Python
Raw Normal View History

2023-01-09 10:14:23 +08:00
# SConscript for touch framework
2019-06-12 09:38:32 +08:00
from building import *
cwd = GetCurrentDir()
src = ['touch.c']
CPPPATH = [cwd, cwd + '/../include']
2020-12-19 16:49:11 +08:00
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_TOUCH', 'RT_USING_DEVICE'], CPPPATH = CPPPATH)
2019-06-12 09:38:32 +08:00
Return('group')