码迷,mamicode.com
首页 > 编程语言 > 详细

vscode配置C++多个.cpp文件

时间:2020-11-21 12:09:08      阅读:8      评论:0      收藏:0      [点我收藏+]

标签:lin   folder   efault   文件路径   configure   ctr   名称   添加   code   

1配置文件

一般vscode配置C++有三个文件,它们分别是:

1.1.c_cpp_properties.json

设置编译环境,通过Ctrl+Shift+P,输入C++,在下拉菜单中选择“C/C++ Edit configuration”,系统自动会在.vscode目录下创建该文件,供我们设置编译环境。可根据自己需求改动如下配置,默认配置如下:

{
    "configurations": [
        {
            "name": "Win32", // 环境名称
            "includePath": [ // 头文件包含路径,当前指定的是工作目录,有需要可添加,加入相应的文件路径即可
                "${workspaceFolder}/**"
            ],
            "defines": [     // 预处理定义
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "compilerPath": "C:\\mingw64\\bin\\gcc.exe", // 编译器路径
            "cStandard": "gnu17",  // 设置C标准库
            "cppStandard": "gnu++14", // 设置C++标准库
            "intelliSenseMode": "gcc-x64" // 设置补全模式
        }
    ],
    "version": 4
}

 

1.2.tasks.json

设置编译参数,通过Ctrl+Shift+p,输入task,在下拉菜单中选择Tasks: Configure Default Build Task -> Create task.json file from templates -> Others,系统自动在.vscode下创建task.json文件,供我们设置具体的编译规则。根据实际请求修改如下:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build C++ train",
            "type": "shell",
            "command": "g++",
            "args": ["-g", "${workspaceFolder}/*.cpp"  , "-o", "train"],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

  

 

3.launch.json

vscode配置C++多个.cpp文件

标签:lin   folder   efault   文件路径   configure   ctr   名称   添加   code   

原文地址:https://www.cnblogs.com/gwzz/p/13993367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!