aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-01-20 11:37:22 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-01-20 11:37:22 -0500
commit5af33ea0146f3cbe750b6f1941e1ed68f2dc733c (patch)
tree7b0df60ea10fe8b0a37ac1450f3bae3fec793083 /appveyor.yml
parent9d054b70f1354bbd2779d72228324f3a251c5883 (diff)
downloaderable-godot-5af33ea0146f3cbe750b6f1941e1ed68f2dc733c.tar.gz
erable-godot-5af33ea0146f3cbe750b6f1941e1ed68f2dc733c.tar.bz2
erable-godot-5af33ea0146f3cbe750b6f1941e1ed68f2dc733c.zip
Appveyor and debug messages
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..0163771
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,22 @@
+branches:
+ only:
+ - master
+
+install:
+ - set QTDIR=C:\Qt\5.8\mingw53_32
+ - choco install -y InnoSetup
+ - set PATH=%QTDIR%\bin;C:\Qt\Tools\mingw530_32\bin;%PATH%;"C:\Program Files (x86)\Inno Setup 5"
+build_script:
+ - qmake FastQt.pro
+ - mingw32-make
+after_build:
+ - windeployqt release/fastqt.exe
+ - cmd: cp LICENSE release/LICENSE.txt"
+ - iscc innosetup.iss
+ - rm release/*.o
+ - rm release/*.cpp
+
+artifacts:
+ - path: Output\AleePlayer-*.exe
+ - path: release
+ type: zip