4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-26 21:47:25 +08:00

14 lines
224 B
Python
Raw Normal View History

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