.appveyor.yml 780 B

1234567891011121314151617181920212223
  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. - alecjacobson
  9. - cmake
  10. install:
  11. - git submodule update --init --recursive
  12. - cinstall: python
  13. build_script:
  14. - echo Running cmake...
  15. - cd c:\projects\libigl\tutorial
  16. - mkdir build
  17. - cd build
  18. - cmake -D "LIBIGL_USE_STATIC_LIBRARY=ON" -D "LIBIGL_WITH_ANTTWEAKBAR=OFF" -G "Visual Studio 14 2015 Win64" ../
  19. # - cmake -G "Visual Studio 14 2015 Win64" ../
  20. - set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
  21. # - set MSBuildOptions=/v:m /p:Configuration=Release /logger:%MSBuildLogger%
  22. - set MSBuildOptions=/v:m /p:Configuration=Debug /logger:%MSBuildLogger%
  23. - msbuild %MSBuildOptions% libigl_tutorials.sln