diff options
Diffstat (limited to 'scripts/appveyor.bat')
| -rw-r--r-- | scripts/appveyor.bat | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/appveyor.bat b/scripts/appveyor.bat new file mode 100644 index 0000000..7d3c32f --- /dev/null +++ b/scripts/appveyor.bat @@ -0,0 +1,16 @@ +if "%APPVEYOR_REPO_TAG_NAME%"=="continuous" ( + + exit 1 + +) + +set QTDIR=C:\Qt\5.12\msvc2017_64 +set PATH=%PATH%;%QTDIR%\bin +call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" + +qmake AleePlayer.pro "CONFIG+=release" +nmake release +mkdir deploy +copy release\AleePlayer.exe deploy +cd deploy +windeployqt AleePlayer.exe -multimedia |
