-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvcpkg.json
52 lines (52 loc) · 1.01 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/master/docs/vcpkg.schema.json",
"name": "ocxreader",
"version": "0.1.0",
"license": "LGPL-2.1",
"description": [
"A tool to convert vessels in OCX format into 3D geometry and export them",
"to different formats."
],
"dependencies": [
{
"name": "spdlog",
"version>=": "1.11.0"
},
{
"name": "magic-enum",
"version>=": "0.8.2"
},
{
"name": "opencascade",
"version>=": "7.6.2#1"
},
{
"name": "boost-system",
"version>=": "1.80.0#1"
},
{
"name": "boost-filesystem",
"version>=": "1.80.0#1"
},
{
"name": "boost-program-options",
"version>=": "1.80.0#1"
},
{
"name": "boost-property-tree",
"version>=": "1.80.0#1"
},
{
"name": "gtest",
"version>=": "1.12.1"
}
],
"features": {
"tests": {
"description": "Build tests",
"dependencies": [
"gtest"
]
}
}
}