You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"command": "make", // Or "mingw32-make" if you are using MinGW on Windows and "make" is not in your PATH
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Clean (Linux)",
|
|
"type": "shell",
|
|
"command": "make clean",
|
|
"args": [
|
|
],
|
|
"problemMatcher": [],
|
|
"group": "cleanup",
|
|
"detail": "Deletes all object files (*.o) in the build"
|
|
},
|
|
{
|
|
"label": "Run",
|
|
"type": "shell",
|
|
"command": "make run",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"dependsOn": "Build"
|
|
}
|
|
]
|
|
} |