12345678910111213141516171819202122232425262728 |
- version: 1.0.{build}
- os: Visual Studio 2017
- test: off
- clone_folder: C:\projects\libigl
- branches:
- only:
- - master
- - alecjacobson
- - cmake
- - cgal
- install:
- - git submodule update --init --recursive
- - cinstall: python
- build_script:
- - echo Running cmake...
- - cd c:\projects\libigl
- - cd external
- - mkdir build
- - cd build
- - cmake ..
- - msbuild %MSBuildOptions% libigl_external.sln
- - cd ../../tutorial
- - mkdir build
- - cd build
- - cmake -D "LIBIGL_USE_STATIC_LIBRARY=ON" -D "LIBIGL_WITH_ANTTWEAKBAR=OFF" -D "BOOST_ROOT=../external/boost/" -G "Visual Studio 15 2017 Win64" ../
- - set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- - set MSBuildOptions=/v:m /p:Configuration=Debug /logger:%MSBuildLogger%
- - msbuild %MSBuildOptions% libigl_tutorials.sln
|