CS2263/Assigments/3/.vscode/tasks.json

28 lines
540 B
JSON
Raw Permalink Normal View History

2023-05-22 23:28:51 -03:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc.exe build active file",
"command": "C:\\Programs\\MSYS2\\mingw64\\bin\\gcc.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: C:\\Programs\\MSYS2\\mingw64\\bin\\gcc.exe"
}
]
}