forked from colmap/colmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcpkg.json
101 lines (101 loc) · 2.71 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"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-graph",
"boost-heap",
"boost-program-options",
"boost-property-map",
"boost-property-tree",
{
"name": "ceres",
"features": [
"lapack",
"schur",
"suitesparse"
]
},
"eigen3",
"flann",
"freeimage",
"gflags",
"glog",
{
"name": "jasper",
"default-features": false
},
"metis",
"sqlite3",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"gui",
"download"
],
"features": {
"tests": {
"description": "Build all tests.",
"dependencies": [
"gtest"
]
},
"cuda": {
"description": "Build with CUDA support.",
"dependencies": [
"glew",
"cuda"
]
},
"gui": {
"description": "Build with GUI support.",
"dependencies": [
"glew",
"qt5-base"
]
},
"cgal": {
"description": "Build with CGAL support.",
"dependencies": [
"cgal"
]
},
"download": {
"description": "Build with download support.",
"dependencies": [
{
"name": "curl",
"features": [
"schannel"
],
"platform": "windows"
},
{
"name": "curl",
"features": [
"openssl"
],
"platform": "!windows"
},
{
"name": "cryptopp",
"platform": "windows & arm64"
},
{
"name": "openssl",
"platform": "!(windows & arm64)"
}
]
}
}
}