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