From 4e5de7279c4ea9956841efa4b9fd416d6bbd788c Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 6 Nov 2023 12:17:21 +0100 Subject: [PATCH] Revert "Revert "CI: macOS compilation fix (Vulkan missing hdr)"" Workaround unfortunately still needed: This reverts commit 8b233cd68f289fed2e8e1a418389849d0cbd9b9e. --- .github/scripts/macOS/prepare.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/scripts/macOS/prepare.sh b/.github/scripts/macOS/prepare.sh index 585197d33..68df43b05 100755 --- a/.github/scripts/macOS/prepare.sh +++ b/.github/scripts/macOS/prepare.sh @@ -31,6 +31,12 @@ brew install imagemagick libcaca libnatpmp jack opencv wolfssl brew install ossp-uuid # for cineform brew install qt brew install glm +# TOREMOVE - missing header in Vulkan v1.3.264 +if [ "$(brew info vulkan-headers | awk 'NR==1{print $4}')" = 1.3.264 ]; then + sudo curl -L https://raw.githubusercontent.com/KhronosGroup/Vulkan-Headers/main/\ +include/vulkan/vulkan_hpp_macros.hpp -o /usr/local/include/vulkan/\ +vulkan_hpp_macros.hpp +fi .github/scripts/macOS/install_dylibbundler_v2.sh