blob: 7d3c32fa44c2581b4d41365f3edc5fbcd5c5f68d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|