Blame view

.vscode/task.json 714 Bytes
83565138   hucm   提交vscode配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  {
      "tasks": [
          {
              "type": "cppbuild",
              "label": "C/C++: g++ 生成活动文件",
              "command": "/usr/bin/g++",
              "args": [
                  "-fdiagnostics-color=always",
                  "-g",
                  "${file}",
                  "-o",
                  "${fileDirname}/${fileBasenameNoExtension}"
              ],
              "options": {
                  "cwd": "${fileDirname}"
              },
              "problemMatcher": [
                  "$gcc"
              ],
              "group": {
                  "kind": "build",
                  "isDefault": true
              },
              "detail": "调试器生成的任务。"
          }
      ],
      "version": "2.0.0"
  }