利用cmake在vscode中快速创建c++环境(Ubuntu)

Visual Studio Code (VSCode) 配置C/C++环境Ubuntu上通常涉及安装必要的工具、设置编译器插件以及配置构建系统。以下是简要步骤: 1. **安装基本依赖**: - 更新包列表并安装GCC编译器和其他相关工具:`sudo apt update && sudo apt install g++ - 安装CMake(用于项目管理):`sudo apt install cmake` 2. **安装C/C++支持**: - 在VSCode打开命令面板(Ctrl + Shift + P),搜索并安装"Code C/C++ Development Tools":`ext install c_cpp_properties` 3. **设置CMake配置**: - 创建一个名为`.vscode`的隐藏文件夹,并在此目录下创建一个`c_cpp_properties.json`文件。 - 添加以下内容作为配置示例(替换`YOUR_PROJECT_PATH`为你的实际项目路径): ```json { "configurations": [ { "name": "(Linux GCC Debug)", "includePath": ["${workspaceFolder}/**"], "defines": [], "compilerPath": "/usr/bin/gcc", "cppStandard": "c17", "intelliSenseMode": "gcc-x64" } ], "version": 4 } ``` 4. **配置启动任务**: - 可能需要创建一个`.tasks.json`文件,配置项目的构建任务,例如: ```json { "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "command": "cmake ${workspaceFolder} && make", "problemMatcher": [] }, { "label": "run", "type": "shell", "command": "./your_executable_name", "problemMatcher": [] } ] } ``` 5. **启用调试**: - 如果你想调试程序,还需要设置launch.json配置文件,示例: ```json { "version": "0.2.0", "configurations": [ { "name": "(Linux GCC x64) Launch", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/main.cpp", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, "MIMode": "gdb", "miDebuggerPath": "/usr/bin/gdb" } ] } ``` 完成以上步骤后,你应该能在VSCode成功地编辑、构建和调试C/C++项目在Ubuntu环境
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

点PY

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值