VSCode での利用
プロジェクトを開く



アプリをビルドする



コード解釈を切り替える

JSON ファイルについて
.vscode/c_cpp_properties.json
.vscode/tasks.json
既存のビルドタスクに設定する
最終更新







最終更新
"tasks": [
{
"label": "Build Samp_PingPong,PingPong (BLUE)",
"type": "shell",
..
"windows": {
"command": "make",
"args": [ "TWELITE=BLUE", "clean", "all" ],
"options": { "env": { "PATH": "${workspaceRoot}\\..\\..\\Tools\\MinGW\\msys\\1.0\\bin" } }
},
"problemMatcher": { "base": "$gcc", "fileLocation": [ "absolute" ] },
"options": { "cwd": "${workspaceRoot}/PingPong/Build" }
},
.."tasks": [
{
"label": "Build Samp_PingPong,PingPong (BLUE)",
"type": "shell",
..
"options": { "cwd": "${workspaceRoot}/PingPong/Build"},
"group": { "kind": "build", "isDefault": true }
},
..