Skip to content

Instantly share code, notes, and snippets.

@kinoshita-lab
Created February 11, 2020 02:45
Show Gist options
  • Save kinoshita-lab/6804b0f0091f7259a15df2efd6da4da7 to your computer and use it in GitHub Desktop.
Save kinoshita-lab/6804b0f0091f7259a15df2efd6da4da7 to your computer and use it in GitHub Desktop.
vscode task config example for logue sdk/nutekt/waves
{
// 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