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