目標
Ctrl+Shift+B でコンパイル作業を行い、Ctrl+Shift+R でコンパイルされたファイルを実行できるようにする。
tasks.jsonの設定
コンパイルや実行の設定
tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "build active file",
"type": "shell",
"command": "g++",
"args": [
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"group": "build",
"problemMatcher": [
"$gcc"
],
"detail": "Compiles the active C++ source file and creates an executable."
},
{
"label": "run active file",
"type": "shell",
"command": "${fileDirname}/${fileBasenameNoExtension}",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [],
"detail": "Runs the executable of the active C++ source file."
},
{
"type": "cppbuild",
"label": "C/C++: gcc アクティブなファイルのビルド",
"command": "/usr/bin/gcc",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "デバッガーによって生成されたタスク。"
}
]
}
keybindings.jsonの設定
tasks.jsonに記述されたタスクをもとに、Ctrl+Shift+B でコンパイル作業を行い、Ctrl+Shift+R でコンパイルされたファイルを実行する。
keybindings.json
[
{
"key": "ctrl+shift+b",
"command": "workbench.action.tasks.runTask",
"args": "build active file"
},
{
"key": "ctrl+shift+r",
"command": "workbench.action.tasks.runTask",
"args": "run active file"
}
]