mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-06 05:10:49 +01:00
Fix artifacts.
This commit is contained in:
parent
24345eeb34
commit
989fc0acea
@ -1,7 +1,9 @@
|
|||||||
# List startup folder.
|
# List startup folder.
|
||||||
$old_pwd=$pwd.Path
|
$old_pwd=$pwd.Path
|
||||||
|
|
||||||
ls "C:\OpenSSL-v111-Win64\bin"
|
ssl_bin="C:\OpenSSL-v111-Win64\bin"
|
||||||
|
|
||||||
|
ls "$ssl_bin"
|
||||||
ls "C:\Program Files\MySQL\MySQL Server 5.7\lib"
|
ls "C:\Program Files\MySQL\MySQL Server 5.7\lib"
|
||||||
|
|
||||||
ls "$env:QTDIR"
|
ls "$env:QTDIR"
|
||||||
@ -24,5 +26,12 @@ nmake.exe install
|
|||||||
cd "app"
|
cd "app"
|
||||||
windeployqt.exe --verbose 1 --compiler-runtime --no-translations --release rssguard.exe librssguard.dll
|
windeployqt.exe --verbose 1 --compiler-runtime --no-translations --release rssguard.exe librssguard.dll
|
||||||
cd ".."
|
cd ".."
|
||||||
|
|
||||||
|
# Copy OpenSSL.
|
||||||
|
Copy-Item -Path "$ssl_bin\libcrypto*.dll" -Destination ".\app\"
|
||||||
|
Copy-Item -Path "$ssl_bin\libssl*.dll" -Destination ".\app\"
|
||||||
|
|
||||||
|
# Build/copy MySQL Qt plugin.
|
||||||
|
|
||||||
nmake.exe windows_all
|
nmake.exe windows_all
|
||||||
cd "$old_pwd"
|
cd "$old_pwd"
|
Loading…
Reference in New Issue
Block a user