32 lines
842 B
JSON
32 lines
842 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"label": "gcc.exe build active file",
|
|
"command": "C:\\MinGW\\bin\\gcc.exe",
|
|
"args": [
|
|
"-g",
|
|
"-ansi",
|
|
"-pedantic",
|
|
"-Wall",
|
|
"-lm",
|
|
"${file}",
|
|
"-o",
|
|
"${fileDirname}\\${fileBasenameNoExtension}.exe"
|
|
],
|
|
"options": {
|
|
"cwd": "C:\\MinGW\\bin"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
} |