4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 12:47:23 +08:00

12 lines
266 B
Python

# SConscript for touch framework
from building import *
cwd = GetCurrentDir()
src = ['dev_touch.c']
CPPPATH = [cwd, cwd + '/../include']
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_TOUCH', 'RT_USING_DEVICE'], CPPPATH = CPPPATH)
Return('group')