From aa77962934e1075c439cb45b22cd959cc7d774c1 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Mon, 2 Mar 2026 23:56:10 +0100 Subject: [PATCH] windows build fix --- implementations/Crafter.Graphics-VulkanDevice.cpp | 2 +- project.json | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/implementations/Crafter.Graphics-VulkanDevice.cpp b/implementations/Crafter.Graphics-VulkanDevice.cpp index d7223be..a50412d 100644 --- a/implementations/Crafter.Graphics-VulkanDevice.cpp +++ b/implementations/Crafter.Graphics-VulkanDevice.cpp @@ -21,7 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA module; #include "vulkan/vulkan.h" -#include "vulkan/vulkan_enums.hpp" +#include "vulkan/vk_enum_string_helper.h" #define GET_EXTENSION_FUNCTION(_id) ((PFN_##_id)(vkGetInstanceProcAddr(instance, #_id))) diff --git a/project.json b/project.json index 7ef7eff..0294e62 100644 --- a/project.json +++ b/project.json @@ -54,6 +54,10 @@ { "path":"https://github.com/KhronosGroup/Vulkan-Headers.git", "type":"include" + }, + { + "path":"https://github.com/KhronosGroup/Vulkan-Utility-Libraries.git", + "type":"include" } ] },