VS Code C/C++ MSVC编译器

avatar
作者
筋斗云
阅读量:0

官方教程

通过快捷方式打开VS Code是编译不了的,需要对tasks.json修改(Tasks: Configure default build task)
先创建tasks.json
在这里插入图片描述

在这里插入图片描述
复制这段配置到tasks.json,记得修改VsDevCmd.bat的路径

{   "version": "2.0.0",   "windows": {     "options": {       "shell": {         "executable": "cmd.exe",         "args": [           "/C",           // The path to VsDevCmd.bat depends on the version of Visual Studio you have installed.           "\"C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/Common7/Tools/VsDevCmd.bat\"",           "&&"         ]       }     }   },   "tasks": [     {       "type": "shell",       "label": "cl.exe build active file",       "command": "cl.exe",       "args": [         "/Zi",         "/EHsc",         "/Fe:",         "${fileDirname}\\${fileBasenameNoExtension}.exe",         "${file}"       ],       "problemMatcher": ["$msCompile"],       "group": {         "kind": "build",         "isDefault": true       }     }   ] } 

不能通过点击运行来运行,需要当作任务运行
在这里插入图片描述

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!