diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..a7d0901 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,52 @@ +{ + "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 + } + } + ] +} \ No newline at end of file