G-CAMS-DATU/rt-thread/components/drivers/tty/SConscript

11 lines
271 B
Python
Raw Normal View History

2024-05-13 08:08:47 +00:00
from building import *
# The set of source files associated with this SConscript file.
src = Glob('*.c')
cwd = GetCurrentDir()
CPPPATH = [cwd + "/include"]
group = DefineGroup('tty', src, depend = ['RT_USING_SMART', 'RT_USING_TTY'], CPPPATH = CPPPATH)
Return('group')