vscode配置C++多个.cpp文件
2021-03-15 13:48
标签:lin folder efault 文件路径 configure ctr 名称 添加 code 一般vscode配置C++有三个文件,它们分别是: 设置编译环境,通过Ctrl+Shift+P,输入C++,在下拉菜单中选择“C/C++ Edit configuration”,系统自动会在.vscode目录下创建该文件,供我们设置编译环境。可根据自己需求改动如下配置,默认配置如下: 设置编译参数,通过Ctrl+Shift+p,输入task,在下拉菜单中选择Tasks: Configure Default Build Task -> Create task.json file from templates -> Others,系统自动在.vscode下创建task.json文件,供我们设置具体的编译规则。根据实际请求修改如下: 3.launch.json vscode配置C++多个.cpp文件 标签:lin folder efault 文件路径 configure ctr 名称 添加 code 原文地址:https://www.cnblogs.com/gwzz/p/13993367.html1配置文件
1.1.c_cpp_properties.json
{
"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
{
// 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
}
}
]
}
文章标题:vscode配置C++多个.cpp文件
文章链接:http://soscw.com/index.php/essay/64979.html