4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-04 07:54:34 +08:00
bernard.xiong b90694ead1 move to components directory
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@635 bbd45198-f89e-11dd-88c7-29a3b14d5316
2010-04-18 15:02:04 +00:00

11 lines
218 B
Python

Import('env')
Import('RTT_ROOT')
# The set of source files associated with this SConscript file.
src_local = Glob('*.c')
env.Append(CPPPATH = RTT_ROOT + '/finsh')
obj = env.Object(src_local)
Return('obj')