cmake-comsim/.vscode/tasks.json

21 lines
446 B
JSON

{
"tasks": [
{
"type": "shell",
"label": "CMake Build",
"command": "cmake",
"args": [
"--build",
"build",
"--config",
"Release",
"--target",
"all",
"-j",
"18",
"-DCMAKE_BUILD_TYPE=Debug"
]
}
],
"version": "2.0.0"
}