40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Generate Build Files",
|
|
"type": "shell",
|
|
"command": "meson setup --native-file=build_options/meson-clang-linux --wipe build",
|
|
"windows": {
|
|
"command": "meson setup --native-file=build_options/meson-clang-win --wipe build"
|
|
},
|
|
"presentation": {
|
|
"reveal": "silent"
|
|
}
|
|
},
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"command": "meson compile -C build",
|
|
"presentation": {
|
|
"reveal": "silent"
|
|
}
|
|
},
|
|
{
|
|
"label": "Run",
|
|
"type": "shell",
|
|
"command": "./build/samples/descriptor_heap/descriptor_heap",
|
|
"windows": {
|
|
"command": "build/evk.exe"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always"
|
|
}
|
|
},
|
|
{
|
|
"label": "Build & Run",
|
|
"dependsOn": ["Build", "Run"],
|
|
"dependsOrder": "sequence"
|
|
}
|
|
]
|
|
} |