-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathvcpkg.json
More file actions
61 lines (61 loc) · 1.24 KB
/
vcpkg.json
File metadata and controls
61 lines (61 loc) · 1.24 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
{
"name": "omath",
"version": "3.10.1",
"description": "General purpose math library",
"homepage": "https://github.com/orange-cpp/omath",
"license": "Zlib",
"supports": "windows | linux | macos",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"avx2": {
"description": "omath will use AVX2 to boost performance",
"supports": "!arm"
},
"benchmark": {
"description": "Build benchmarks",
"dependencies": [
"benchmark"
]
},
"examples": {
"description": "Build examples",
"dependencies": [
"glfw3",
"glew",
"opengl",
{
"name": "imgui",
"features": ["glfw-binding", "opengl3-binding"]
}
]
},
"imgui": {
"description": "omath will define method to convert omath types to imgui types",
"dependencies": [
"imgui"
]
},
"tests": {
"description": "Build unit-tests using GTest",
"dependencies": [
"gtest"
]
},
"lua": {
"description": "lua support for omath",
"dependencies": [
"lua",
"sol2"
]
}
}
}