-
Notifications
You must be signed in to change notification settings - Fork 45
/
vcpkg.json
53 lines (53 loc) · 1.23 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
{
"name": "current-cppgraphqlgen",
"version-string": "current",
"features": {
"schemagen": {
"description": "Build the schemagen tool.",
"dependencies": [
"boost-program-options"
]
},
"clientgen": {
"description": "Build the clientgen tool.",
"dependencies": [
"boost-program-options"
]
},
"tests": {
"description": "Build tests.",
"dependencies": [
"gtest"
]
},
"rapidjson": {
"description": "Build the graphqljson library with RapidJSON.",
"dependencies": [
"rapidjson"
]
},
"update-samples": {
"description": "Regenerate the sample schema sources whether or not we're building the tests.",
"dependencies": [
{
"name": "current-cppgraphqlgen",
"default-features": false,
"features": [
"schemagen",
"clientgen"
]
}
]
},
"http-sample": {
"description": "Build the HTTP client sample using C++20 coroutines with Boost.Beast/Boost.Asio.",
"dependencies": [
"boost-beast"
]
}
},
"dependencies": [
"pegtl"
],
"builtin-baseline": "7aeffc91033ad35cc4e2c152f213a866ec6c11ac"
}