-
Notifications
You must be signed in to change notification settings - Fork 0
/
devcontainer-feature.json
59 lines (59 loc) · 1.39 KB
/
devcontainer-feature.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
{
"name": "Vcpkg Tool",
"id": "vcpkg",
"version": "1.3.2",
"documentationURL": "https://github.com/msclock/features/tree/main/src/vcpkg",
"description": "A vcpkg tool feature",
"options": {
"username": {
"type": "string",
"proposals": [
"devcontainer",
"vscode",
"codespace",
"none",
"automatic"
],
"default": "automatic",
"description": "Enter name of a non-root user to configure or none to skip"
},
"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"
]
}