-
Notifications
You must be signed in to change notification settings - Fork 1
/
vcpkg.json
63 lines (63 loc) · 1.38 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "ss-cpp",
"description": "A continuously evolving basic template for cpp development.",
"builtin-baseline": "20a72ce99b12dd0ebfea5d39f32681bd68b19d03",
"homepage": "https://github.com/serious-scaffold/ss-cpp",
"dependencies": [
"fmt",
"spdlog",
"cmake-modules",
"robotology-cmake-ycm"
],
"overrides": [
{
"name": "fmt",
"version": "10.2.1",
"port-version": 2
},
{
"name": "spdlog",
"version": "1.13.0"
},
{
"name": "cmake-modules",
"version": "1.6.8"
},
{
"name": "robotology-cmake-ycm",
"version": "0.16.3"
}
],
"features": {
"test": {
"description": "Dependencies for testing",
"dependencies": [
{
"name": "gtest",
"version>=": "1.14.0"
}
]
}
},
"vcpkg-configuration": {
"registries": [
{
"kind": "git",
"baseline": "a1d862fc6df3883df4516ccdd0c204d14cf4dc64",
"repository": "https://github.com/msclock/cmake-registry",
"packages": [
"cmake-modules",
"robotology-cmake-ycm",
"vcpkg-cmake-module"
]
}
],
"overlay-ports": [
"cmake/vcpkg/ports"
],
"overlay-triplets": [
"cmake/vcpkg/triplets"
]
}
}