Last active
January 16, 2017 01:59
-
-
Save jen6/851eb26392ef3cd1ea91faaccb7fb944 to your computer and use it in GitHub Desktop.
vscode vhdl build and problem matcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // 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