Skip to content

Instantly share code, notes, and snippets.

@amithkk
Created November 17, 2019 11:40
Show Gist options
  • Save amithkk/a857decd0006db51c5252cbb291e352d to your computer and use it in GitHub Desktop.
Save amithkk/a857decd0006db51c5252cbb291e352d to your computer and use it in GitHub Desktop.
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "gcc build active file",
"command": "/usr/bin/gcc",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
},
"problemMatcher": [
"$gcc"
],
"group": "build"
},
{
"type": "shell",
"label": "mpicc build active file",
"command": "/usr/bin/mpicc",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}.out"
],
"options": {
"cwd": "/usr/bin"
},
"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