4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 07:43:30 +08:00

12 lines
266 B
Python
Raw Normal View History

2023-01-08 21:14:23 -05:00
# SConscript for touch framework
2019-06-12 09:38:32 +08:00
from building import *
cwd = GetCurrentDir()
src = ['dev_touch.c']
2019-06-12 09:38:32 +08:00
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')