26 lines
513 B
JSON
26 lines
513 B
JSON
{
|
|
"name": "C++",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"conan-extension.installArgs": [
|
|
"-of build",
|
|
"-b \"*\"",
|
|
"-s build_type=Debug"
|
|
],
|
|
"cmake.buildDirectory": "${workspaceFolder}/build",
|
|
"cmake.installPrefix": "${workspaceFolder}/install"
|
|
},
|
|
"extensions": [
|
|
"ms-vscode.cpptools",
|
|
"twxs.cmake",
|
|
"ms-vscode.cmake-tools",
|
|
"konicy.conan-extension"
|
|
]
|
|
}
|
|
}
|
|
} |