Skip to content

Instantly share code, notes, and snippets.

@aaronwolen
Last active April 7, 2020 20:52
Show Gist options
  • Save aaronwolen/31cc7b12f6d26903554ff5baaade0b90 to your computer and use it in GitHub Desktop.
Save aaronwolen/31cc7b12f6d26903554ff5baaade0b90 to your computer and use it in GitHub Desktop.
vscode tasks for building tiledb-vcf
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "setup",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/libtiledbvcf"
},
"command": "mkdir -p build"
},
{
"label": "cmake",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/libtiledbvcf/build"
},
"command": "cmake ..",
"dependsOn": "setup",
"group": "test"
},
{
"label": "make",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/libtiledbvcf/build"
},
"command": "make",
"args": [
"-j8"
],
"dependsOn": [
"cmake"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "test",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/libtiledbvcf"
},
"command": "test/run-cli-tests.sh build test/inputs",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment