Skip to content

Instantly share code, notes, and snippets.

@yude
Last active August 22, 2020 03:29
Show Gist options
  • Save yude/d934976dd50e77c3e774b1edf3131e1c to your computer and use it in GitHub Desktop.
Save yude/d934976dd50e77c3e774b1edf3131e1c to your computer and use it in GitHub Desktop.
tasks.json - Visual Studio Code で C/C++ のコンパイルをいい感じにする
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "C/C++: gcc.exe build active file",
"command": "gcc.exe へのパス",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": "build"
}
]
}
@yude
Copy link
Author

yude commented Aug 22, 2020

(╯°□°)╯︵ ┻━┻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment