Use cloud Qt.

This commit is contained in:
Martin Rotter 2020-04-28 10:07:07 +02:00
parent 9acef04a22
commit 967a2409f3
2 changed files with 5 additions and 19 deletions

View file

@ -175,24 +175,7 @@ win32 {
lib.path = $$PREFIX
lib.CONFIG = no_check_exist
qt_dlls_root.files = ../../resources/binaries/windows/qt5-msvc2017/*.*
qt_dlls_root.path = $$quote($$PREFIX/)
qt_dlls_plugins.files = ../../resources/binaries/windows/qt5-msvc2017/*
qt_dlls_plugins.path = $$quote($$PREFIX/)
INSTALLS += target lib qt_dlls_root qt_dlls_plugins
equals(USE_WEBENGINE, true) {
# Copy extra resource files for QtWebEngine.
qtwebengine_dlls.files = ../../resources/binaries/windows/qt5-msvc2017-webengine/*
qtwebengine_dlls.path = $$quote($$PREFIX/)
qtwebengine.files = ../../resources/binaries/windows/qt5-msvc2017-webengine/*.*
qtwebengine.path = $$quote($$PREFIX/)
INSTALLS += qtwebengine_dlls qtwebengine
}
INSTALLS += target lib
INSTALL_HEADERS_PREFIX = $$quote($$PREFIX/include/librssguard/)
}

View file

@ -11,7 +11,10 @@ mkdir "rssguard-build"
cd "rssguard-build"
qmake.exe ..\build.pro "$env:qmake_args"
nmake.exe
nmake.exe install
cd "src\rssguard"
cd "src\rssguard\app"
"$env:QTDIR\bin\windeployqt.exe" --verbose 1 --compiler-runtime --no-translations --release rssguard.exe librssguard.dll
cd ".."
nmake.exe windows_all
cd "$old_pwd"