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.

72 lines
1.1 KiB

{
"version": "2.0.0",
"tasks": [
{
"label": "Make Build",
"type": "shell",
"command": "make -s -j 10 all",
"options": {
"cwd": "${workspaceRoot}",
"shell": {
"executable": "cmd.exe",
"args": [
"/C"
]
}
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "Make Clean",
"type": "shell",
"command": "make -s clean",
"options": {
"cwd": "${workspaceRoot}",
"shell": {
"executable": "cmd.exe",
"args": [
"/C"
]
}
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"problemMatcher": []
},
{
"label": "Debug",
"type": "shell",
"command": "make -s clean",
"options": {
"cwd": "${workspaceRoot}",
"shell": {
"executable": "cmd.exe",
"args": [
"/C"
]
}
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}