25 lines
659 B
JSON
25 lines
659 B
JSON
|
{
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "build debug meson",
|
||
|
"type": "shell",
|
||
|
"command": "meson build --buildtype=debug && ninja -C build",
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "build release meson",
|
||
|
"type": "shell",
|
||
|
"command": "meson build --buildtype=release && ninja -C build",
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"version": "2.0.0"
|
||
|
}
|