SConscript 473 B

123456789101112131415161718192021222324
  1. Import('env')
  2. src_local = Split("""
  3. tc_comm.c
  4. thread_static.c
  5. thread_dynamic.c
  6. thread_priority.c
  7. thread_same_priority.c
  8. thread_static_simple.c
  9. thread_dynamic_simple.c
  10. thread_delete.c
  11. semaphore_static.c
  12. semaphore_dynamic.c
  13. semaphore_priority.c
  14. semaphore_buffer_worker.c
  15. heap_malloc.c
  16. heap_realloc.c
  17. """)
  18. # The set of source files associated with this SConscript file.
  19. obj = env.Object(src_local)
  20. env.Append(CPPDEFINES='RT_USING_TC')
  21. Return('obj')