mirror of
https://github.com/joprietoe/gdbus.git
synced 2025-04-05 16:36:49 +02:00
29 lines
897 B
JSON
29 lines
897 B
JSON
{
|
|
"version": "0.1.0",
|
|
"command": "make",
|
|
"isShellCommand": true,
|
|
"tasks": [
|
|
{
|
|
"taskName": "all",
|
|
// Make this the default build command.
|
|
"isBuildCommand": true,
|
|
// Show the output window only if unrecognized errors occur.
|
|
"showOutput": "always",
|
|
// No args
|
|
"args": [],
|
|
// Use the standard less compilation problem matcher.
|
|
"problemMatcher": {
|
|
"owner": "cpp",
|
|
"fileLocation": ["relative", "${workspaceRoot}"],
|
|
"pattern": {
|
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"severity": 4,
|
|
"message": 5
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |