blob: 20264fce5e11d1dc44017206a76925de0e959c48 [file] [log] [blame]
{
"version": "2.0.0",
"tasks": [
{
"label": "Autoreconf",
"type": "shell",
"command": "autoreconf -if",
"problemMatcher": []
},
{
"label": "Configure",
"type": "shell",
"command": "./configure --prefix=${workspaceFolder}/target --enable-ccache --enable-experimental-plugins --enable-example-plugins --enable-test-tools --enable-debug --enable-werror ${env:ATS_VSCODE_CONFIGURE}",
"dependsOrder": "sequence",
"dependsOn": ["Autoreconf"],
"problemMatcher": []
},
{
"label": "Build",
"type": "shell",
"command": "make -j 16",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Install",
"type": "shell",
"command": "make -j 16 install",
"problemMatcher": [
"$gcc"
]
},
{
"label": "Test",
"type": "shell",
"command": "make -j 8 test",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "Full Build",
"dependsOrder": "sequence",
"dependsOn": ["Configure", "Build", "Install"],
"problemMatcher": [
"$gcc"
]
}
{
"label": "Dump Enviroment Variables",
"command": "env",
"problemMatcher": []
}
]
}