ubuntu vscode c++配置文件

ubuntu vscode c++配置文件,第1张

ubuntu vscode c++配置文件 launch.json
{
    // See https://go.microsoft.com/fwlink/?linkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "g++",
            "args": ["-g", "${file}", "-std=c++11", "-o", "${filebasenameNoExtension}.out"]
        }
     ]
}

tasks.json
{
    // See https://go.microsoft.com/fwlink/?linkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "g++",
            "args": ["-g", "${file}", "-std=c++11", "-o", "${filebasenameNoExtension}.out"]
        }
     ]
}

ps:就这两个玩意儿,竟然还有人弄成要钱下载的,无语。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5115493.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存