Files
OpenVulkano/.vscode/tasks.json
2024-12-21 17:19:01 +02:00

52 lines
1.2 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build OpenVulkano",
"type": "shell",
"command": "cmake",
"args": [
"--build",
"${workspaceFolder}/build",
"--target",
"openVulkanoCpp"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build OpenVulkano examples",
"type": "shell",
"command": "cmake",
"args": [
"--build",
"${workspaceFolder}/build",
"--target",
"OpenVulkano_Examples"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build OpenVulkano tests",
"type": "shell",
"command": "cmake",
"args": [
"--build",
"${workspaceFolder}/build",
"--target",
"OpenVulkano_Examples"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}