Skip to content

Instantly share code, notes, and snippets.

@oory33
Created July 27, 2022 18:23
Show Gist options
  • Save oory33/282a21e1512a3203b2b1dc9084b2dc75 to your computer and use it in GitHub Desktop.
Save oory33/282a21e1512a3203b2b1dc9084b2dc75 to your computer and use it in GitHub Desktop.
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang++ アクティブなファイルのビルド",
"command": "/usr/bin/clang++",
"args": [
"-fdiagnostics-color=always",
"-g",
"-std=c++11",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "コンパイラ: /usr/bin/clang++"
},
{
"type": "cppbuild",
"label": "C/C++: g++ アクティブなファイルのビルド",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"-std=c++11",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "コンパイラ: /usr/bin/g++"
}
],
"version": "2.0.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment