summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorwalle303 <walle303@users.noreply.github.com>2017-04-24 20:28:19 +0000
committerwalle303 <walle303@users.noreply.github.com>2017-04-24 23:33:14 +0000
commita6805cfc06e7ef170b1ea4fb552f883af3929bdf (patch)
treeb995189ef0e5965c771cf2b1e01aa449bea44c26 /appveyor.yml
parent46af37490f0beb4c6fa7f40e98ebf0ec52a32410 (diff)
Change windows build to release
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 4c2f9b96..dfe85e0a 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -17,13 +17,13 @@ install:
- set PATH=%PATH%;%QT_DIR%\bin;C:\MinGW\bin
build_script:
- - cmake -G "Visual Studio 14 2015 Win64" -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
- - cmake --build build
+ - cmake -G "Visual Studio 14 2015 Win64" -H. -Bbuild
+ - cmake --build build --config Release
- ls -lh build
after_build:
- mkdir NhekoRelease
- - copy build\Debug\nheko.exe NhekoRelease\nheko.exe
+ - copy build\Release\nheko.exe NhekoRelease\nheko.exe
- windeployqt --release NhekoRelease\nheko.exe
- 7z a nheko_win_64.zip .\NhekoRelease\*