mirror of
https://gitee.com/Lamdonn/varch.git
synced 2025-12-06 08:46:42 +08:00
30 lines
829 B
JSON
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"
|
|
} |