11 lines
269 B
Python
11 lines
269 B
Python
|
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_LWP', 'RT_USING_TTY'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|