gpt4 book ai didi

c++ - 如何在 Visual Studio Code 中构建和运行 C++ 代码?

转载 作者:太空狗 更新时间:2023-10-29 20:02:30 25 4
gpt4 key购买 nike

我有一个当前编译代码的 tasks.json 脚本

{
"version": "0.1.0",
"command": "gcc",
"isShellCommand": true,
"args": ["-Wall", "${relativeFile}", "-o", "${relativeFile}.exe", "-pedantic"],
"echoCommand": true,
"showOutput": "always",
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}

这工作正常,但是当我想运行文件时,我必须从命令行运行 exe。是否也可以在任务中执行此操作?因此,如果它成功完成构建,那么它会运行一个不同的任务吗?

最佳答案

如果其他人像我一样在搜索时遇到此问题,您现在可以将 launch.json 中的属性 preLaunchTask 设置为构建任务的 name 属性,它将在您启动之前运行。

例如

"name": "调试 (gdb) 启动",
"preLaunchTask": "全部构建",

将在启动程序之前在 tasks.json 中运行 "name": "Builld All"

您可以在 Debugging in Visual Code 上阅读相关信息文档页面。

关于c++ - 如何在 Visual Studio Code 中构建和运行 C++ 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39998471/

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