-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvcpkg.json
More file actions
64 lines (63 loc) · 1.09 KB
/
vcpkg.json
File metadata and controls
64 lines (63 loc) · 1.09 KB
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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "mtrsim",
"version": "1.0.0",
"dependencies": [
{
"name": "eigen3"
},
{
"name": "hdf5",
"features": [
"cpp",
"zlib"
]
},
{
"name": "stb"
},
{
"name": "cli11"
},
{
"name": "nlohmann-json"
},
{
"name": "spdlog"
},
{
"name": "ebsdlib",
"version>=": "2.1.0"
},
{
"name": "h5support"
}
],
"features": {
"tests": {
"description": "Unit tests via Catch2",
"dependencies": [
{
"name": "catch2"
}
]
},
"parallel": {
"description": "Parallel support with TBB",
"dependencies": [
{
"name": "tbb"
}
]
},
"python": {
"description": "Python bindings via pybind11",
"dependencies": [
{
"name": "pybind11",
"version>=": "2.10.0"
}
]
}
}
}