From 0d4cdeea978780b2e9ada964d42d8506849959f6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 5 Sep 2019 23:32:39 +0530 Subject: [PATCH] Ensure Qt plugins are loaded in macOS VM --- setup/unix-ci.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index bd76739136..201a8fa1fb 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -36,6 +36,7 @@ if ismacos: setenv('QMAKE', '$SW/qt/bin/qmake') setenv('QTWEBENGINE_DISABLE_SANDBOX', '1') old = os.environ.get('DYLD_FALLBACK_LIBRARY_PATH', '') + setenv('QT_PLUGIN_PATH', '$SW/qt/plugins') if old: old += ':' setenv('DYLD_FALLBACK_LIBRARY_PATH', old + '$SW/lib')