mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-30 21:51:12 +02:00
19 lines
No EOL
404 B
JSON
19 lines
No EOL
404 B
JSON
// .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"
|
|
]
|
|
}
|
|
}
|
|
} |