summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorMarcel <MTRNord@users.noreply.github.com>2017-04-24 19:53:53 +0200
committerMTRNord <mtrnord1@gmail.com>2017-04-25 18:11:32 +0200
commit30a12ac01ede6adbb715edcce9197321201b4dad (patch)
tree199ac5bc728fbfd1a62bff162e5565c3da5cab00 /appveyor.yml
parent01fb5a44eb50344619870534bae9cab0d7297ab4 (diff)
Add nsis setup generator
fix dll issues fix openssl dll issues
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index dfe85e0a..32e025c4 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -15,6 +15,8 @@ build:
install:
- set QT_DIR=C:\Qt\5.8\msvc2015_64
- set PATH=%PATH%;%QT_DIR%\bin;C:\MinGW\bin
+ - copy LICENSE .ci\windows\LICENSE.txt
+ - cinst nsis --version 3.0 -y -installArgs /D=C:\nsis
build_script:
- cmake -G "Visual Studio 14 2015 Win64" -H. -Bbuild
@@ -24,9 +26,15 @@ build_script:
after_build:
- mkdir NhekoRelease
- copy build\Release\nheko.exe NhekoRelease\nheko.exe
- - windeployqt --release NhekoRelease\nheko.exe
+ - windeployqt --qmldir C:\Qt\5.8\msvc2015_64\qml\ --release NhekoRelease\nheko.exe
+ - copy C:\OpenSSL-Win64\bin\ssleay32.dll .\NhekoRelease\ssleay32.dll
+ - copy C:\OpenSSL-Win64\bin\libeay32.dll .\NhekoRelease\libeay32.dll
+ - copy C:\OpenSSL-Win64\lib\libeay32.lib .\NhekoRelease\libeay32.lib
+ - copy C:\OpenSSL-Win64\bin\ssleay32.dll .\NhekoRelease\ssleay32.dll
- 7z a nheko_win_64.zip .\NhekoRelease\*
+ - C:\nsis\makensis .ci\windows\nheko.nsi
artifacts:
- path: nheko_win_64.zip
- path: NhekoRelease\nheko.exe
+ - path: nheko_setup.exe