forked from strasdat/Sophus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
35 lines (28 loc) · 822 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
29
30
31
32
33
34
35
branches:
only:
- master
os: Visual Studio 2015
clone_folder: c:\projects\sophus
platform: x64
configuration: Debug
build:
project: c:\projects\sophus\build\Sophus.sln
install:
- ps: wget https://gitlab.com/libeigen/eigen/-/archive/3.3.4/eigen-3.3.4.zip -outfile eigen3.zip
- cmd: 7z x eigen3.zip -o"C:\projects" -y > nul
- git clone https://github.com/fmtlib/fmt.git
- cd fmt
- git checkout 5.3.0
- mkdir build
- cd build
- cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
- cmake --build . --target install
- cd ../..
before_build:
- cd c:\projects\sophus
- mkdir build
- cd build
- cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug -D EIGEN3_INCLUDE_DIR=C:\projects\eigen-3.3.4 ..
after_build:
- ctest --output-on-failure