Skip to content

Instantly share code, notes, and snippets.

@FindHao
Created August 14, 2025 03:29
Show Gist options
  • Select an option

  • Save FindHao/a171b8c0ce201e0505c29e9ad83d7f06 to your computer and use it in GitHub Desktop.

Select an option

Save FindHao/a171b8c0ce201e0505c29e9ad83d7f06 to your computer and use it in GitHub Desktop.
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make -j 4",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "build-debug",
"type": "shell",
"command": "DEBUG=1 make -j 4",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "clean",
"type": "shell",
"command": "make clean",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment