Open2
C++VS Code & CMakeメモ
ネット上の記事はOSやコンパイラなど違いがち
ひとまずうまくいった
OS : Windows
コンパイラ : MSVC
における手順をまとめる
以下をインストール
- CMake
- ninja
参考
vs codeに以下の機能拡張を入れる
- C++
- CMake
- CMake Tools
ワークスペースとなるフォルダを作成してvs codeで開く
ctrl+shift+P CMake: Quick Startの案内に従う
tasks.json
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: cl.exe アクティブなファイルのビルド",
"command": "cl.exe",
"args": [
"/Zi",
"/EHsc",
"/nologo",
"/Fe${fileDirname}\\${fileBasenameNoExtension}.exe",
"${file}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$msCompile"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "デバッガーによって生成されたタスク。"
}
],
"version": "2.0.0"
}
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "(msvc) Launch",
"type": "cppvsdbg",
"request": "launch",
// Resolved by CMake Tools:
"program": "${command:cmake.launchTargetPath}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [
{
// add the directory where our target was built to the PATHs
// it gets resolved by CMake Tools:
"name": "PATH",
"value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
],
"console": "integratedTerminal"
}
]
}
参考