gpt4 book ai didi

visual-studio-code - 如何设置 Visual Studio Code 来编译 C++ 代码?

转载 作者:行者123 更新时间:2023-12-03 04:10:53 24 4
gpt4 key购买 nike

微软的Visual Studio Code编辑器相当不错,但它没有默认支持构建 C++ 项目。

如何配置它来执行此操作?

最佳答案

构建任务是特定于项目的。要创建新项目,请在 Visual Studio Code 中打开一个目录。

按照说明操作here ,按 Ctrl + Shift + P,输入 Configure Tasks,选择它并按 Enter.

tasks.json 文件将被打开。将以下构建脚本粘贴到文件中并保存:

{
"version": "0.1.0",
"command": "make",
"isShellCommand": true,
"tasks": [
{
"taskName": "Makefile",

// Make this the default build command.
"isBuildCommand": true,

// Show the output window only if unrecognized errors occur.
"showOutput": "always",

// Pass 'all' as the build target
"args": ["all"],

// Use the standard less compilation problem matcher.
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
]
}

现在转到菜单文件首选项键盘快捷键,并为构建任务添加以下键绑定(bind):

// Place your key bindings in this file to overwrite the defaults
[
{ "key": "f8", "command": "workbench.action.tasks.build" }
]

现在,当您按 F8 时,Makefile 将被执行,并且错误将在编辑器中带有下划线。

关于visual-studio-code - 如何设置 Visual Studio Code 来编译 C++ 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30269449/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com