forked from openMVG/openMVG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
48 lines (38 loc) · 1.17 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
42
43
44
45
46
47
48
version: 1.0.{build}
clone_folder: c:\dev\openMVG
install:
- git submodule update --init --recursive
environment:
matrix:
# Visual Studio 2015 Win32
- GENERATOR: Visual Studio 14 2015
PLATFORM: Win32
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# Visual Studio 2015 x64
- GENERATOR: Visual Studio 14 2015 Win64
PLATFORM: x64
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# Visual Studio 2017 Win32
- GENERATOR: Visual Studio 15 2017
PLATFORM: Win32
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# Visual Studio 2017 x64
- GENERATOR: Visual Studio 15 2017 Win64
PLATFORM: x64
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
configuration:
# - Debug
- Release
before_build:
- cd c:\dev\openMVG
- md openMVG_build
- cd openMVG_build
# Configure:
# - ceres - SCHUR_SPECIALIZATIONS is set to OFF to speed up the build time
- cmake -G"%GENERATOR%" -DCMAKE_BUILD_TYPE=%configuration% -DOpenMVG_BUILD_EXAMPLES=OFF -DOpenMVG_BUILD_TESTS=ON -DSCHUR_SPECIALIZATIONS=OFF ../src/
build:
project: c:\dev\openMVG\openMVG_Build\openMVG.sln
parallel: true
verbosity: minimal
test_script:
- ctest -C %configuration% -V