-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvcpkg.json
More file actions
53 lines (53 loc) · 1.23 KB
/
vcpkg.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "nexusforce",
"version": "1.0.0",
"description": "A Modern C++ Library with extended functionality",
"homepage": "https://github.com/aurora250/NexusForce",
"builtin-baseline": "62159a45e18f3a9ac0548628dcaf74fcb60c6ff9",
"dependencies": [
{
"name": "openssl",
"features": ["tools"]
},
"libpq",
"libmysql",
"zlib",
"sqlite3",
"hiredis",
{
"name": "pcre2",
"features": ["jit"]
}
],
"features": {
"postgresql": {
"description": "PostgreSQL support",
"dependencies": ["libpq"]
},
"mysql": {
"description": "MySQL support",
"dependencies": ["libmysql"]
},
"sqlite3": {
"description": "SQLite3 support",
"dependencies": ["sqlite3"]
},
"redis": {
"description": "Redis support",
"dependencies": ["hiredis"]
},
"zlib": {
"description": "zlib compression support",
"dependencies": ["zlib"]
},
"openssl": {
"description": "OpenSSL support",
"dependencies": ["openssl"]
},
"pcre2": {
"description": "pcre2 support",
"dependencies": ["pcre2"]
}
},
"default-features": ["postgresql", "mysql", "sqlite3", "redis", "zlib", "openssl", "pcre2"]
}