forked from libigl/libigl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
28 lines (28 loc) · 867 Bytes
/
.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
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 -G "Visual Studio 15 2017 Win64" -T "host=x64" ..
- 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