Skip to content

Instantly share code, notes, and snippets.

@shettykaran21
Last active August 23, 2020 07:25
Show Gist options
  • Save shettykaran21/222c06d29793ee0aeee962d902f7e7a1 to your computer and use it in GitHub Desktop.
Save shettykaran21/222c06d29793ee0aeee962d902f7e7a1 to your computer and use it in GitHub Desktop.
C++ General - WSL (VS Code)
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Build C++",
"command": "/usr/bin/g++",
"args": [
"-g",
"*.cpp",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"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