SConscript 287 B

1234567891011
  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. if GetDepend('RT_USING_LWP'):
  7. group = DefineGroup('tty', src, depend = ['RT_USING_TTY'], CPPPATH = CPPPATH)
  8. Return('group')