4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 10:23:31 +08:00
2023-01-08 22:52:13 -05:00

12 lines
262 B
Python

# 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')