From ae752e8faaa550666744b9adc21dab4b2ee4a94c Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Tue, 9 Jul 2024 20:46:48 +0800 Subject: [PATCH] chore(rt-thread): revert macro back to PKG_USING_LVGL_SQUARELINE (#6481) --- env_support/rt-thread/squareline/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env_support/rt-thread/squareline/SConscript b/env_support/rt-thread/squareline/SConscript index 7f2be2f524..08220b4519 100644 --- a/env_support/rt-thread/squareline/SConscript +++ b/env_support/rt-thread/squareline/SConscript @@ -20,6 +20,6 @@ for root, dirs, files in os.walk(sls_src_cwd): if check_h_hpp_exists(current_path): # add .h and .hpp path inc = inc + [current_path] -group = DefineGroup('LVGL-SquareLine', src, depend = ['PKG_LVGL_USING_SQUARELINE'], CPPPATH = inc) +group = DefineGroup('LVGL-SquareLine', src, depend = ['PKG_USING_LVGL_SQUARELINE'], CPPPATH = inc) Return('group')