Ideal Reality

興味の赴くままに

VSCodeでCMake ExtensionのビルドをCtrl(Command)+Shift+Bから実行する

CMake Extensionでビルドできるようにして、.vscode/tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "CMake Build",
            "type": "cmake",
            "command": "build",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": []
        }
    ]
}

こう設定すればCtrl(Command)+Shift+BからCMake Extensionのビルドを実行できる

スポンサーリンク

コメント

投稿されたコメントはありません

名前

メールアドレス(任意)

コメント

関連する投稿