mirror of
https://github.com/by777/dataStructureForC.git
synced 2026-02-03 01:53:15 +08:00
21 lines
584 B
JSON
21 lines
584 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"command": "g++",
|
|
"args": ["-g","${file}","-o","a.out"], // 编译命令
|
|
"cwd":"${workspaceRoot}",
|
|
"problemMatcher": {
|
|
"owner": "cpp",
|
|
"fileLocation": ["relative", "\\"],
|
|
"pattern": {
|
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"severity": 4,
|
|
"message": 5
|
|
}
|
|
}
|
|
}
|