Files
nbt-cpp/.vscode/tasks.json
2019-09-05 08:22:25 +00:00

29 lines
688 B
JSON

{
// Документацию по формату tasks.json см.
// по адресу https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "meson",
"mode": "build",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "meson",
"mode": "test",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "test",
"isDefault": true
}
}
]
}