.appveyor.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. environment:
  12. BOOST_ROOT: C:/Libraries/boost_1_65_1
  13. install:
  14. - git submodule update --init --recursive
  15. - cinstall: python
  16. build_script:
  17. - cd c:\projects\libigl
  18. # External libraries (boost)
  19. # - cd external
  20. # - mkdir build
  21. # - cd build
  22. # - cmake -G "Visual Studio 15 2017 Win64" -T "host=x64" ..
  23. # - msbuild %MSBuildOptions% libigl_external.sln
  24. # - cd ../..
  25. # Python bindings
  26. # - cd python
  27. # - mkdir build
  28. # - cd build
  29. # - cmake -DLIBIGL_WITH_EMBREE=OFF -DLIBIGL_USE_STATIC_LIBRARY=ON ../
  30. # - msbuild %MSBuildOptions% pyigl.sln
  31. # - cd ../tutorial
  32. # - ${PYTHON} 101_FileIO.py
  33. # - cd ../../
  34. # Tutorials
  35. - cd tutorial
  36. - mkdir build
  37. - cd build
  38. - cmake -DLIBIGL_USE_STATIC_LIBRARY=ON -G "Visual Studio 15 2017 Win64" ../
  39. - set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
  40. - set MSBuildOptions=/v:m /p:Configuration=Debug /logger:%MSBuildLogger%
  41. - msbuild %MSBuildOptions% libigl_tutorials.sln