forked from libigl/libigl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.appveyor.yml
41 lines (41 loc) · 1.11 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: 1.0.{build}
os: Visual Studio 2017
test: off
clone_folder: C:\projects\libigl
branches:
only:
- master
- alecjacobson
- cmake
- cgal
environment:
BOOST_ROOT: C:/Libraries/boost_1_65_1
install:
- git submodule update --init --recursive
- cinstall: python
build_script:
- cd c:\projects\libigl
# External libraries (boost)
# - cd external
# - mkdir build
# - cd build
# - cmake -G "Visual Studio 15 2017 Win64" -T "host=x64" ..
# - msbuild %MSBuildOptions% libigl_external.sln
# - cd ../..
# Python bindings
# - cd python
# - mkdir build
# - cd build
# - cmake -DLIBIGL_WITH_EMBREE=OFF -DLIBIGL_USE_STATIC_LIBRARY=ON ../
# - msbuild %MSBuildOptions% pyigl.sln
# - cd ../tutorial
# - ${PYTHON} 101_FileIO.py
# - cd ../../
# Tutorials
- cd tutorial
- mkdir build
- cd build
- cmake -DLIBIGL_USE_STATIC_LIBRARY=ON -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