@Visual Studio Code (vscode) 在Windows 下 配置运行C/C++
本文只针对 Windows 下 完成调试配置, 修改vscode调试配置文件,环境默认以可编译。
需要处理两个配置文件:
- launch.json
- tasks.json
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ (gdb) Launch", // 配置名称,将会在启动配置的下拉菜单中显示
"type": "cppdbg", // 配置类型,这里只能为cppdbg
"request": "launch", // 请求配置类型,可以为launch(启动)或attach(附加)
"program": "${fileDirname}/${fileBasenameNoExtension}.exe", // 将要进行调试的程序的路径
"args": [], // 程序调试时传递给程序的命令行参数,一般设为空即可
"stopAtEntry": false, // 设为true时程序将暂停在程序入口处,我一般设置为true
"cwd": "${fileDirname}", // 调试程序时的工作目录
"environment":