Skip to content

Instantly share code, notes, and snippets.

@NickCrew
Created January 11, 2020 02:18
Show Gist options
  • Save NickCrew/99d2e0a13b6499924b5b0cb0e59fb087 to your computer and use it in GitHub Desktop.
Save NickCrew/99d2e0a13b6499924b5b0cb0e59fb087 to your computer and use it in GitHub Desktop.
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "clang++ build active file",
"command": "/usr/bin/clang++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
},
"problemMatcher": [
"$gcc"
],
"group": "build"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment