Created
November 30, 2017 14:24
-
-
Save yuqlid/cef387ec8bb1b71447f04a19d12e05a5 to your computer and use it in GitHub Desktop.
VSCodeのタスクを利用してビルド&クリーン
This file contains 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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"type": "shell", | |
"echoCommand": true, | |
"tasks": [ | |
{ | |
"taskName": "build all", | |
"command": "make all -j4", | |
"problemMatcher": [ | |
"$gcc" | |
], | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
} | |
},{ | |
"taskName":"clean", | |
"command": "make clean", | |
"problemMatcher": [ | |
"$gcc" | |
], | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment