vscode配置C++多个.cpp文件
Posted 春风秋水
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode配置C++多个.cpp文件相关的知识,希望对你有一定的参考价值。
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文件的主要内容,如果未能解决你的问题,请参考以下文章
开发环境Ubuntu 中使用 VSCode 开发 C/C++ ⑤ ( tasks.json 中的 args 数组配置分析 | 编译并执行 C++ 程序 )