diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-01-22 09:42:12 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-01-22 09:42:12 -0500 |
| commit | 0573929ec51e3a58aa30da4b4b8f9cf8c069e6f8 (patch) | |
| tree | d2dc0851cf4a59ecae6fee3a68bf8b4c7e8f4bce /appveyor/build.bat | |
| parent | e6c23c3629a633c3c7ef61eb1c97b4c4d12309a4 (diff) | |
| download | erable-godot-0573929ec51e3a58aa30da4b4b8f9cf8c069e6f8.tar.gz erable-godot-0573929ec51e3a58aa30da4b4b8f9cf8c069e6f8.tar.bz2 erable-godot-0573929ec51e3a58aa30da4b4b8f9cf8c069e6f8.zip | |
Added CIs in readme
Diffstat (limited to 'appveyor/build.bat')
| -rw-r--r-- | appveyor/build.bat | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/appveyor/build.bat b/appveyor/build.bat new file mode 100644 index 0000000..0c7d9e6 --- /dev/null +++ b/appveyor/build.bat @@ -0,0 +1,16 @@ +if "%APPVEYOR_REPO_TAG_NAME%"=="continuous" ( + + exit 1 + +) + +set QTDIR=C:\Qt\5.14\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 |
