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

53 lines
1.4 KiB
JSON
Raw Normal View History

2022-05-15 21:47:33 +02:00
{
"tasks": [
{
"type": "cppbuild",
2022-05-25 22:01:22 +02:00
"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\"",
2022-05-15 21:47:33 +02:00
"command": "c++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${workspaceFolder}\\src\\main.cpp",
"-o",
2022-05-25 23:45:53 +02:00
"${workspaceFolder}\\build\\build.exe",
"-static-libgcc",
"-static-libstdc++",
"-static"
2022-05-15 21:47:33 +02:00
],
"options": {
"cwd": "${workspaceFolder}\\build\\"
2022-05-15 21:47:33 +02:00
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
],
"version": "2.0.0"
}