Created
February 11, 2020 02:45
-
-
Save kinoshita-lab/6804b0f0091f7259a15df2efd6da4da7 to your computer and use it in GitHub Desktop.
vscode task config example for logue sdk/nutekt/waves
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": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "build", | |
"type": "shell", | |
"command": "make", | |
"problemMatcher": [ | |
"$gcc" | |
] | |
}, | |
{ | |
"label": "clean", | |
"type": "shell", | |
"command": "make clean", | |
"problemMatcher": [ | |
"$gcc" | |
] | |
}, | |
{ | |
"label": "probe", | |
"command": "logue-cli", | |
"args": ["probe"], | |
"type": "shell", | |
}, | |
{ | |
"label": "load", | |
"command": "logue-cli", | |
"args": [ | |
"load", | |
"-u", | |
"waves.ntkdigunit" | |
], | |
"type": "shell", | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment