diff options
| -rw-r--r-- | appveyor.yml | 17 |
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 | ||
| 2 | os: unstable | ||
| 3 | |||
| 4 | # a depth of 50 should be enough (travis uses the same setting) | ||
| 5 | clone_depth: 50 | ||
| 6 | |||
| 7 | environment: | ||
| 8 | QTDIR: C:\Qt\5.4\msvc2013_opengl | ||
| 9 | |||
| 10 | install: | ||
| 11 | - git submodule update --init --recursive | ||
| 12 | |||
| 13 | before_build: | ||
| 14 | - mkdir build | ||
| 15 | - cd build | ||
| 16 | - cmake .. | ||
| 17 | - cd .. | ||