forked from LLVMParty/RemillWorkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
26 lines (26 loc) · 961 Bytes
/
devcontainer.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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/cpp
{
"name": "remill-workshop",
"image": "ghcr.io/llvmparty/remillworkshop:8f93b1cf",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"llvm-vs-code-extensions.vscode-clangd",
"twxs.cmake",
"ms-vscode.cmake-tools",
"RReverser.llvm",
"EditorConfig.EditorConfig",
"tamasfe.even-better-toml",
"ms-vscode.cpptools",
"tintinweb.graphviz-interactive-preview",
"esbenp.prettier-vscode"
]
}
},
"remoteEnv": {
"PATH": "/workspaces/RemillWorkshop/build:/cxx-common/install/bin:${containerEnv:PATH}"
},
"postCreateCommand": "cmake --preset clang"
}