BA
/
BaBoRo_test2
Backup 1
Diff: mbed-os/tools/export/vscode/tasks.tmpl
- Revision:
- 0:02dd72d1d465
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-os/tools/export/vscode/tasks.tmpl Tue Apr 24 11:45:18 2018 +0000 @@ -0,0 +1,30 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "0.1.0", + "name": "make", + "isShellCommand": true, + "showOutput": "always", + "problemMatcher": { + "owner": "cpp", + "fileLocation": ["relative", "${workspaceRoot}/mbed-os"], + "pattern": { + "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + }, + "args": ["-j"], + "linux": { + "command": "make" + }, + "osx": { + "command": "make" + }, + "windows": { + "command": "make.exe" + } +}