generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
47 lines (47 loc) · 1.11 KB
/
devcontainer-feature.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "Vcpkg Tool",
"id": "vcpkg",
"version": "2.0.0",
"documentationURL": "https://github.com/msclock/features/tree/main/src/vcpkg",
"description": "A vcpkg tool feature",
"options": {
"vcpkgversion": {
"type": "string",
"proposals": [
"stable",
"latest"
],
"default": "latest",
"description": "Enter vcpkg version tag or stable or latest"
},
"vcpkgroot": {
"type": "string",
"proposals": [
"/usr/local/vcpkg"
],
"default": "/usr/local/vcpkg",
"description": "Enter VCPKGROOT as vcpkg root path"
},
"vcpkgdownload": {
"type": "string",
"proposals": [
"/usr/local/vcpkg-downloads"
],
"default": "/usr/local/vcpkg-downloads",
"description": "Enter VCPKGDOWNLOAD as vcpkg download path"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"twxs.cmake"
]
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/git"
]
}