aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2018-09-18 10:45:42 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2018-09-18 11:29:57 +0200
commit82d8033a19c13e8bca4d236425ec272adfe0571e (patch)
tree6a8270e708e9b291949db7585a8fb44ac3d685db
parenteb06a1a2be61e929e5dca288fc4b9a27dcbb6507 (diff)
downloadqxmpp-82d8033a19c13e8bca4d236425ec272adfe0571e.tar.gz
[appveyor] initial attempt at compiling
-rw-r--r--.appveyor.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 00000000..c9fcc361
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,17 @@
+platform: x64
+
+environment:
+ matrix:
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+ GENERATOR: Visual Studio 15 2017 Win64
+ QTDIR: C:\Qt\5.11.1\msvc2017_64
+
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ GENERATOR: Visual Studio 14 2015 Win64
+ QTDIR: C:\Qt\5.11.1\msvc2015_64
+
+build_script:
+ - mkdir build
+ - cd build
+ - cmake -G "%GENERATOR%" .. "-DCMAKE_PREFIX_PATH=%QTDIR%"
+ - cmake --build .