SConscript 269 B

12345678910
  1. Import('env')
  2. Import('RTT_ROOT')
  3. # The set of source files associated with this SConscript file.
  4. src_local = Glob('*.c')
  5. env.Append(CPPPATH = RTT_ROOT + '/components/libc/minilibc', CPPDEFINES='RT_USING_MINILIBC')
  6. obj = env.Object(src_local)
  7. Return('obj')