From 36154f46b6d44470390791298811b4518217b6d2 Mon Sep 17 00:00:00 2001 From: "jiaojinxing1987@gmail.com" Date: Sat, 2 Oct 2010 12:15:48 +0000 Subject: [PATCH] git-svn-id: https://rt-thread.googlecode.com/svn/trunk@988 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/SConscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/SConscript b/components/SConscript index a1d0b568c6..920d840d93 100644 --- a/components/SConscript +++ b/components/SConscript @@ -27,4 +27,7 @@ if 'RT_USING_MODBUS' in dir(rtconfig) and rtconfig.RT_USING_MODBUS: if 'RT_USING_RTGUI' in dir(rtconfig) and rtconfig.RT_USING_RTGUI: objs = objs + SConscript('rtgui/SConscript') +if 'RT_USING_FTK' in dir(rtconfig) and rtconfig.RT_USING_FTK: + objs = objs + SConscript('external/ftk/src/os/rt-thread/SConscript') + Return('objs')