12 lines
266 B
Python
Raw Normal View History

2024-08-05 20:57:09 +08:00
# SConscript for touch framework
from building import *
cwd = GetCurrentDir()
2025-03-14 11:04:51 +08:00
src = ['dev_touch.c']
2024-08-05 20:57:09 +08:00
CPPPATH = [cwd, cwd + '/../include']
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_TOUCH', 'RT_USING_DEVICE'], CPPPATH = CPPPATH)
Return('group')