From edd8759f3934b44c640d7d044bd0c383caf68a42 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Fri, 26 Jul 2024 01:16:59 +0800 Subject: [PATCH] scons: move `-Ithird_party/qrcode` to qt modules (#33071) move -Ithird_party/qrcode to qt modeules --- SConstruct | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 1f83b1e43d..90fc5b5ee7 100644 --- a/SConstruct +++ b/SConstruct @@ -205,7 +205,6 @@ env = Environment( "#third_party/json11", "#third_party/linux/include", "#third_party/snpe/include", - "#third_party/qrcode", "#third_party", "#cereal", "#msgq", @@ -314,7 +313,7 @@ try: except SCons.Errors.UserError: qt_env.Tool('qt') -qt_env['CPPPATH'] += qt_dirs# + ["#selfdrive/ui/qt/"] +qt_env['CPPPATH'] += qt_dirs + ["#third_party/qrcode"] qt_flags = [ "-D_REENTRANT", "-DQT_NO_DEBUG",