mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-31 22:21:13 +02:00
Docker and devcontainer files for development in an ubuntu container
This commit is contained in:
parent
12cf5de1a8
commit
48bb57b6a5
3 changed files with 53 additions and 0 deletions
19
.devcontainer/devcontainer.json
Normal file
19
.devcontainer/devcontainer.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
// .devcontainer/devcontainer.json
|
||||
{
|
||||
"name": "ModernCppStarter",
|
||||
"context": "..",
|
||||
"dockerFile": "../Dockerfile",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {
|
||||
"C_Cpp.default.compilerPath": "/usr/bin/clang++",
|
||||
"cmake.generator": "Ninja"
|
||||
},
|
||||
"extensions": [
|
||||
"ms-vscode.cmake-tools",
|
||||
"ms-vscode.cpptools",
|
||||
"twxs.cmake"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue