This repository has been archived on 2022-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
calculator/.vscode/tasks.json

50 lines
No EOL
1.3 KiB
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "Build Debug",
"command": "c++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\build.exe",
"-DDEBUG"
],
"options": {
"cwd": "${workspaceFolder}\\build\\"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": false
},
},
{
"type": "cppbuild",
"label": "Build \"Release\"",
"command": "c++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\build.exe"
],
"options": {
"cwd": "${workspaceFolder}\\build\\"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
],
"version": "2.0.0"
}