forked from openMVG/openMVG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
31 lines (25 loc) · 981 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
version: 1.0.{build}
clone_folder: c:\dev\openMVG
install:
- git submodule update --init --recursive
environment:
matrix:
- GENERATOR: "Visual Studio 14 2015 Win64"
- GENERATOR: "Visual Studio 14 2015"
build_script:
- cd c:\dev\openMVG
- md openMVG_build
- cd openMVG_build
# Configure:
# - ceres - SCHUR_SPECIALIZATIONS set to OFF to speed up build time
- cmake -G"%GENERATOR%" -DOpenMVG_BUILD_EXAMPLES=OFF -DOpenMVG_BUILD_TESTS=ON -DSCHUR_SPECIALIZATIONS=OFF ../src/
# Build:
# - only some targets since there is no time to compile all
# - in debug mode, since the build is faster and VisualStudio reporting is better
- cmake --build . --config Debug --target openMVG_test_sequential_SfM
- cmake --build . --config Debug --target openMVG_test_global_SfM
- cmake --build . --config Debug --target openMVG_main_IncrementalSfM
- cmake --build . --config Debug --target openMVG_main_GlobalSfM
build:
parallel: true
verbosity: minimal