diff options
| -rwxr-xr-x | scripts/build.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build.py b/scripts/build.py index 776914175c1..e723f101b34 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -146,6 +146,10 @@ def common_cmake_arguments(args): pch_option = 'ON' if args.with_pch else 'OFF' cmake_args += ['-DBUILD_WITH_PCH=' + pch_option] + # work around QTBUG-89754 + # Qt otherwise adds dependencies on libGLX and libOpenGL + cmake_args += ['-DOpenGL_GL_PREFERENCE=LEGACY'] + return cmake_args def build_qtcreator(args, paths): |
