varch/.vscode/tasks.json
2024-08-11 02:56:16 +08:00

30 lines
829 B
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc.exe build active file",
// "command": "D:\\MinGW\\bin\\gcc.exe",
"command": "make", // use makefile
"args": [
// "-fdiagnostics-color=always",
// "-g",
// "${file}",
// "-o",
// "${fileDirname}\\${fileBasenameNoExtension}.exe"
"CFLAG=-g"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}