SConscript 473 字节
Newer Older
B
bernard.xiong 已提交
1 2 3 4 5 6 7
Import('env')

src_local = Split("""
tc_comm.c
thread_static.c
thread_dynamic.c
thread_priority.c
B
bernard.xiong 已提交
8 9 10 11
thread_same_priority.c
thread_static_simple.c
thread_dynamic_simple.c
thread_delete.c
B
bernard.xiong 已提交
12 13 14 15 16 17
semaphore_static.c
semaphore_dynamic.c
semaphore_priority.c
semaphore_buffer_worker.c
heap_malloc.c
heap_realloc.c
B
bernard.xiong 已提交
18 19 20 21
""")

# The set of source files associated with this SConscript file.
obj = env.Object(src_local)
B
bernard.xiong 已提交
22
env.Append(CPPDEFINES='RT_USING_TC')
B
bernard.xiong 已提交
23 24

Return('obj')