Skip to content

Instantly share code, notes, and snippets.

@martinkunc
Created December 13, 2019 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinkunc/b6b3491335b040db6293404b930ff838 to your computer and use it in GitHub Desktop.
Save martinkunc/b6b3491335b040db6293404b930ff838 to your computer and use it in GitHub Desktop.
visual-studio-code-tasks.json
{
"tasks": [
{
"type": "shell",
"label": "clang++ build active file",
"command": "/usr/bin/clang++",
"args": [
"-std=c++17",
"-stdlib=libc++",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"--debug"
],
"options": {
"cwd": "/usr/bin"
},
"group": {
"kind": "build",
"isDefault": true
}
},
],
"version": "2.0.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment