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.
64 lines
982 B
64 lines
982 B
{
|
|
"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
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Debug",
|
|
"type": "shell",
|
|
"command": "make -s clean",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}",
|
|
"shell": {
|
|
"executable": "cmd.exe",
|
|
"args": [
|
|
"/C"
|
|
]
|
|
}
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |