network-experiment/.devcontainer/devcontainer.json

29 lines
578 B
JSON

{
"name": "4beumer.nl C++",
"build": {
"dockerfile": "../devcontainer.Dockerfile",
"args": {
"BUILD_TYPE": "Debug"
}
},
"postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/postcreate.py --build_type=Debug",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"settings": {
"conan-extension.installArgs": [
"-of build",
"-s build_type=Debug"
],
},
"extensions": [
"ms-vscode.cpptools",
"ms-python.python",
"twxs.cmake",
"ms-vscode.cmake-tools",
"konicy.conan-extension"
]
}
}
}