rt-thread-official/examples/kernel/SConscript

18 lines
314 B
Python
Raw Normal View History

Import('env')
src_local = Split("""
tc_comm.c
thread_static.c
thread_dynamic.c
thread_priority.c
thread_same_priority.c
thread_static_simple.c
thread_dynamic_simple.c
thread_delete.c
""")
# The set of source files associated with this SConscript file.
obj = env.Object(src_local)
Return('obj')