summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 000000000..2000951a6
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,17 @@
1# it seems that Qt is only installed by default on unstable os at the moment
2os: unstable
3
4# a depth of 50 should be enough (travis uses the same setting)
5clone_depth: 50
6
7environment:
8 QTDIR: C:\Qt\5.4\msvc2013_opengl
9
10install:
11 - git submodule update --init --recursive
12
13before_build:
14 - mkdir build
15 - cd build
16 - cmake ..
17 - cd ..