blob: c53f7775f74986f3501a5f1dc89f5c499f8c5ba0 (
plain)
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
|
{
"name": "vcpkg-ci-minc",
"version-string": "ci",
"description": "Port to force features of minc within CI",
"homepage": "https://github.com/microsoft/vcpkg",
"license": "MIT",
"dependencies": [
{
"name": "minc",
"default-features": false
},
{
"name": "vcpkg-cmake",
"host": true
}
],
"default-features": [
"all"
],
"features": {
"all": {
"description": "Test all features",
"dependencies": [
{
"name": "minc",
"features": [
"minc1"
],
"platform": "native"
}
]
}
}
}
|