From f6cbce73242c1078dc989111ca982778cecd4cd2 Mon Sep 17 00:00:00 2001 From: James Turner Date: Sat, 23 Dec 2017 08:26:30 +0000 Subject: [PATCH] Windows installer: fix QML deployment --- build_release_windows.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build_release_windows.bat b/build_release_windows.bat index d57106b..b6b082e 100755 --- a/build_release_windows.bat +++ b/build_release_windows.bat @@ -67,8 +67,9 @@ cmake --build . --config RelWithDebInfo --target INSTALL cd .. REM Qt5 deployment -%QT5SDK32%\bin\windeployqt --release --list target %WORKSPACE%/install/msvc140/bin/fgfs.exe -%QT5SDK64%\bin\windeployqt --release --list target %WORKSPACE%/install/msvc140-64/bin/fgfs.exe +SET QMLDIR=%WORKSPACE%/flightgear/src/GUI/qml +%QT5SDK32%\bin\windeployqt --release --list target --qmldir %QMLDIR% %WORKSPACE%/install/msvc140/bin/fgfs.exe +%QT5SDK64%\bin\windeployqt --release --list target --qmldir %QMLDIR% %WORKSPACE%/install/msvc140-64/bin/fgfs.exe REM build setup ECHO Packaging root is %WORKSPACE%