.appveyor.yml 820 B

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