Skip to content

Instantly share code, notes, and snippets.

@Rockheung
Last active April 4, 2022 12:48
Show Gist options
  • Save Rockheung/34c93202415b16d50b59507c285b3067 to your computer and use it in GitHub Desktop.
Save Rockheung/34c93202415b16d50b59507c285b3067 to your computer and use it in GitHub Desktop.
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang++ build active file",
"command": "/usr/bin/clang++",
"args": [
"-std=c++17",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: /usr/bin/clang++"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment