From 5c2fa5cabfdcefaa36e29a83882294db5cf77564 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Sun, 23 Apr 2023 18:02:54 -0700 Subject: [PATCH] scons: fix warning on newer versions with Qt3 tool --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SConstruct b/SConstruct index 758cdaedf3..320590b058 100644 --- a/SConstruct +++ b/SConstruct @@ -314,7 +314,9 @@ else: qt_env.PrependENVPath('PATH', Dir("#third_party/qt5/larch64/bin/").abspath) elif arch != "Darwin": qt_libs += ["GL"] +qt_env['QT3DIR'] = qt_env['QTDIR'] +# compatibility for older SCons versions try: qt_env.Tool('qt3') except SCons.Errors.UserError: