.appveyor.yml 716 B

123456789101112131415161718192021
  1. version: 1.0.{build}
  2. os: Visual Studio 2015
  3. test: off
  4. clone_folder: C:\projects\libigl
  5. branches:
  6. only:
  7. - master
  8. install:
  9. - git submodule update --init --recursive
  10. - cinstall: python
  11. build_script:
  12. - echo Running cmake...
  13. - cd c:\projects\libigl\tutorial
  14. - mkdir build
  15. - cd build
  16. - cmake -D "LIBIGL_USE_STATIC_LIBRARY=ON" -G "Visual Studio 14 2015 Win64" ../
  17. # - cmake -G "Visual Studio 14 2015 Win64" ../
  18. - set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
  19. # - set MSBuildOptions=/v:m /p:Configuration=Release /logger:%MSBuildLogger%
  20. - set MSBuildOptions=/v:m /p:Configuration=Debug /logger:%MSBuildLogger%
  21. - msbuild %MSBuildOptions% libigl_tutorials.sln