如何在vscode的文件夹中编译/构建多个cpp文件?

时间:2019-06-14 18:43:31

标签: visual-studio-code vscode-tasks

我的工作区文件夹中有多个cpp文件。我想写我的Tasks.json文件来拾取文件夹中的所有cpp文件来构建它们,以便链接程序可以链接它们。

我想为此编写一个通用的task.json配置,以便可以在我的工作空间文件夹中拥有多个文件夹。

有可能吗?

我当前的Task.json文件

"version": "2.0.0",
  "tasks": [

    // MAC OS Build
    {
      "type": "shell",
      "label": "MAC g++ build active file",
      "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": true,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": true
      },
      "command": "/usr/bin/g++",
      "args": [
        "-Wall",
        "-Wno-c++11-extensions",
        "-std=c++14",
        "-g",
        "${file}",
        "-o",
        "${fileDirname}/${fileBasenameNoExtension}"
      ],
      "options": {
        "cwd": "/usr/bin"
      },
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "problemMatcher": {
        "owner": "cpp",
        "fileLocation": ["relative", "${workspaceFolder}"],
        "pattern": {
            "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
            "file": 1,
            "line": 2,
            "column": 3,
            "severity": 4,
            "message": 5
        }
      }
    },

0 个答案:

没有答案