12 lines
263 B
Python
Raw Normal View History

2021-11-01 20:33:03 +08:00
# SConscript for touch framework
from building import *
cwd = GetCurrentDir()
src = ['touch.c']
CPPPATH = [cwd, cwd + '/../include']
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_TOUCH', 'RT_USING_DEVICE'], CPPPATH = CPPPATH)
Return('group')