Skip to content

Instantly share code, notes, and snippets.

@jen6
Last active January 16, 2017 01:59
Show Gist options
  • Select an option

  • Save jen6/851eb26392ef3cd1ea91faaccb7fb944 to your computer and use it in GitHub Desktop.

Select an option

Save jen6/851eb26392ef3cd1ea91faaccb7fb944 to your computer and use it in GitHub Desktop.
vscode vhdl build and problem matcher
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "cmd",
"isShellCommand": true,
"args": ["/c"],
"showOutput": "silent",
"tasks" : [
{
"taskName": "vsimbuild",
"args" : ["vcom ${file}"],
"isBuildCommand": true,
"suppressTaskName": true,
"problemMatcher": {
"fileLocation": ["relative", "${workspaceRoot}"],
"owner":"vhd",
"pattern": {
"regexp": "\\s+(Error|Warning).*:.*\\\\(.*\\..*)\\((.\\d)\\):(.*)",
"severity": 1,
"file": 2,
"line": 3,
"message":4
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment