lemonldap-ng/.vscode/tasks.json

19 lines
468 B
JSON
Raw Normal View History

2018-06-04 15:58:33 +02:00
{
// 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",
2018-06-13 12:25:37 +02:00
"command": "LANG=C make",
"problemMatcher": []
2018-06-04 15:58:33 +02:00
},
{
"label": "test",
2018-06-13 12:25:37 +02:00
"type": "shell",
"command": "LANG=C make test",
"problemMatcher": []
2018-06-04 15:58:33 +02:00
}
]
}