Created
June 24, 2019 08:25
-
-
Save sshravan/2ec99a223b7620724c39112e0d934b48 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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
// "command": "sh", | |
// "type": "shell", | |
// "args": ["-c"], | |
"options": { | |
"cwd": "${workspaceRoot}/build" | |
}, | |
"tasks": [ | |
{ | |
"label": "Remove build dir", | |
"type": "shell", | |
"command": "rm -rf build && mkdir build", | |
"problemMatcher": [], | |
"options": { | |
"cwd": "${workspaceRoot}" | |
}, | |
}, | |
{ | |
"label": "cmake", | |
"type": "shell", | |
"command": "cmake", | |
"args": [ | |
".." | |
], | |
"problemMatcher": [], | |
}, | |
{ | |
"label": "make", | |
"type": "shell", | |
"command": "make", | |
"args": [ | |
"-j7" | |
], | |
"problemMatcher": [ | |
"$gcc" | |
], | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment