12 lines
262 B
Python
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')
|