.appveyor.yml 1.1 KB

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