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