rtt-f030/examples/kernel/SConscript
bernard.xiong 6ccd04543c add thread example.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@456 bbd45198-f89e-11dd-88c7-29a3b14d5316
2010-03-01 09:37:59 +00:00

14 lines
224 B
Python

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')