Visual Studio Code (vscode) 配置 C / C++ 环境

1.安装vscode(并切换语言)
下载链接:https://code.visualstudio.com/Download
2.安装cpptools工具
在商店中搜索c++
3.下载mingw
下载地址:https://sourceforge.net/projects/mingw-w64/files/
找到 "x86_64-posix-seh"里面有好几个版本,自己选个。
安装到 C:\mingw64
4.环境变量配置
用户变量path中添加
C:\mingw64\bin
cmd中输入g++测一下。展示 下面的就可以。其它的则失败。
Visual Studio Code (vscode) 配置 C / C++ 环境_第1张图片

5.测试demo
新建测试文件cenv.cpp。输入以下,并f5成功会有下面的信息。
Visual Studio Code (vscode) 配置 C / C++ 环境_第2张图片
中间选择编译环境C++(GDB/LLDB)的时候会生成两个配置文件

launch.json

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "g++.exe - 生成和调试活动文件",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${fileDirname}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "miDebuggerPath": "C:\\mingw64\\bin\\gdb.exe",
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "C/C++: g++.exe 生成活动文件"
        }
    ]
}

task.json

{
    "tasks": [
        {
            "type": "cppbuild",
            "label": "C/C++: g++.exe 生成活动文件",
            "command": "C:\\mingw64\\bin\\g++.exe",
            "args": [
                "-g",
                "${file}",
                "-o",
                "${fileDirname}\\${fileBasenameNoExtension}.exe"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "detail": "调试器生成的任务。"
        }
    ],
    "version": "2.0.0"
}

你可能感兴趣的:(c++)