Skip to content

Instantly share code, notes, and snippets.

@nyx-rattapoom
Last active January 22, 2018 08:19
Show Gist options
  • Save nyx-rattapoom/b0c865e5a4aec8081b6e78fbb6177aad to your computer and use it in GitHub Desktop.
Save nyx-rattapoom/b0c865e5a4aec8081b6e78fbb6177aad to your computer and use it in GitHub Desktop.
{
// .vscode/tasks.json
"version": "2.0.0",
"tasks": [
{
"label": "build current file",
"type": "shell",
"command": "g++",
"args": [
"-std=c++11", "-Wall", "${file}", "-o ${fileBasenameNoExtension}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment