Skip to content

Instantly share code, notes, and snippets.

@sean-gilliam
Created November 18, 2019 21:43
Show Gist options
  • Save sean-gilliam/e991bd0716a69a73165f350b855f61e6 to your computer and use it in GitHub Desktop.
Save sean-gilliam/e991bd0716a69a73165f350b855f61e6 to your computer and use it in GitHub Desktop.
riftshadow vscode task settings
{
"version": "2.0.0",
"tasks": [
{
"label": "compile tests",
"command": "make -C ${workspaceRoot}/tests/",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": [
"compile source"
]
},
{
"label": "compile source",
"command": "make -C ${workspaceRoot}/code/",
"type": "shell",
"group": "build"
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment