appveyor.yml 292 B

1234567891011121314151617
  1. # it seems that Qt is only installed by default on unstable os at the moment
  2. os: unstable
  3. # shallow clone
  4. clone_depth: 1
  5. environment:
  6. QTDIR: C:\Qt\5.4\msvc2013_opengl
  7. install:
  8. - git submodule update --init --recursive
  9. before_build:
  10. - mkdir build
  11. - cd build
  12. - cmake ..
  13. - cd ..