68ca9f07a6
* [dfs] sync cromfs * [rt-smart]Weaken RT_USING_LWP, use RT_USING_SMART as macro configuration * [format] fix some format issue.
11 lines
271 B
Python
11 lines
271 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_SMART', 'RT_USING_TTY'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|