-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvcpkg.json
79 lines (79 loc) · 1.59 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
{
"name": "sese",
"version": "3.0.0",
"description": "A cross-platform framework for basic components.",
"homepage": "https://github.com/libsese/sese",
"documentation": "https://libsese.github.io/sese",
"license": "Apache-2.0",
"supports": "x64 & (windows | osx | linux) & !uwp",
"builtin-baseline": "c82f74667287d3dc386bce81e44964370c91a289",
"dependencies": [
{
"name": "asio",
"features": [
"openssl"
]
},
"openssl",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib",
{
"name": "simdjson",
"features": [
"threads", "utf8-validation"
]
}
],
"default-features": [
"sqlite3"
],
"features": {
"archive": {
"description": "add archive support",
"dependencies": [
"libarchive"
]
},
"async-logger": {
"description": "use the async logger"
},
"mysql": {
"description": "add mysql and mariadb support",
"dependencies": [
"libmariadb"
]
},
"psql": {
"description": "add postgresql support",
"dependencies": [
"libpq"
]
},
"replace-execinfo": {
"description": "replace the system execinfo implementation",
"dependencies": [
"libunwind"
]
},
"sqlite3": {
"description": "add sqlite3 support",
"dependencies": [
"sqlite3"
]
},
"tests": {
"description": "build the unit test",
"dependencies": [
"benchmark",
"gtest"
]
}
}
}