From deebb0ef96bf7f0c4cbf730cf1db1d7033382692 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 20 Dec 2024 12:35:56 +0200 Subject: [PATCH] add build tasks for vs code --- .vscode/tasks.json | 52 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .vscode/tasks.json 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