Created
August 14, 2025 03:29
-
-
Save FindHao/a171b8c0ce201e0505c29e9ad83d7f06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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