forked from colmap/colmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcpkg.json
70 lines (70 loc) · 1.84 KB
/
vcpkg.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "colmap",
"description": "COLMAP is a general-purpose Structure-from-Motion (SfM) and Multi-View Stereo (MVS) pipeline with a graphical and command-line interface. It offers a wide range of features for reconstruction of ordered and unordered image collections. The software is licensed under the new BSD license.",
"homepage": "https://colmap.github.io/",
"license": "BSD-3-Clause",
"supports": "(linux | (windows & !static) | osx) & (x86 | x64 | arm64)",
"dependencies": [
"boost-algorithm",
"boost-filesystem",
"boost-graph",
"boost-heap",
"boost-program-options",
"boost-property-map",
"boost-property-tree",
{
"name": "ceres",
"features": [
"lapack",
"suitesparse"
]
},
"eigen3",
"flann",
"freeimage",
"gflags",
"glog",
{
"name": "jasper",
"default-features": false
},
"metis",
"sqlite3",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"tests": {
"description": "Build all tests.",
"dependencies": [
"gtest"
]
},
"cuda": {
"description": "Build with CUDA.",
"dependencies": [
"glew",
"cuda"
]
},
"gui": {
"description": "Build the GUI.",
"dependencies": [
"glew",
"qt5-base"
]
},
"cgal": {
"description": "Build with CGAL.",
"dependencies": [
"cgal"
]
}
}
}