SConscript 271 B

12345678910
  1. from building import *
  2. # The set of source files associated with this SConscript file.
  3. src = Glob('*.c')
  4. cwd = GetCurrentDir()
  5. CPPPATH = [cwd + "/include"]
  6. group = DefineGroup('tty', src, depend = ['RT_USING_SMART', 'RT_USING_TTY'], CPPPATH = CPPPATH)
  7. Return('group')