From 5a600125ec12eb451586e7ba2bcaa6119d1514e6 Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Sat, 20 Nov 2010 12:33:48 +0000 Subject: [PATCH] add ftk updated SConscript file. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1066 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/external/SConscript | 13 +++++++++++++ components/external/ftk/SConscript | 7 +++++++ 2 files changed, 20 insertions(+) create mode 100644 components/external/SConscript create mode 100644 components/external/ftk/SConscript diff --git a/components/external/SConscript b/components/external/SConscript new file mode 100644 index 0000000000..896e5f029f --- /dev/null +++ b/components/external/SConscript @@ -0,0 +1,13 @@ +# for module compiling +import os +Import('RTT_ROOT') + +objs = [] +list = os.listdir(os.path.join(RTT_ROOT, 'components', 'external')) + +for d in list: + path = os.path.join(RTT_ROOT, 'components', 'external', d) + if os.path.isfile(os.path.join(path, 'SConscript')): + objs = objs + SConscript(os.path.join(d, 'SConscript')) + +Return('objs') diff --git a/components/external/ftk/SConscript b/components/external/ftk/SConscript new file mode 100644 index 0000000000..0c125061c6 --- /dev/null +++ b/components/external/ftk/SConscript @@ -0,0 +1,7 @@ +# for module compiling +import os +Import('RTT_ROOT') + +objs = SConscript('ftk/src/os/rt-thread/SConscript') + +Return('objs')