37 lines
897 B
JSON
37 lines
897 B
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "build main.c",
|
||
|
"type": "shell",
|
||
|
"command": "/usr/bin/gcc",
|
||
|
"args": [
|
||
|
"-g",
|
||
|
"main.c",
|
||
|
"-o",
|
||
|
"a.out"
|
||
|
],
|
||
|
"group": "build",
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"detail": "Build the main.c file using gcc"
|
||
|
},
|
||
|
{
|
||
|
"label": "build main_logging.c",
|
||
|
"type": "shell",
|
||
|
"command": "/usr/bin/gcc",
|
||
|
"args": [
|
||
|
"-g",
|
||
|
"main_logging.c",
|
||
|
"-o",
|
||
|
"a.out"
|
||
|
],
|
||
|
"group": "build",
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"detail": "Build the main_logging.c file using gcc"
|
||
|
}
|
||
|
]
|
||
|
}
|