summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2023-10-14 18:36:46 +0200
committerLynne <dev@lynne.ee>2023-10-15 17:11:47 +0200
commitfec6e84b18685abd2f8b3192bee560ff52c5220b (patch)
tree8fb5ae84c507a73444ddb50449b2a89ea80c8a48 /configure
parent1e888462a1ea2b3f1144b536fd2702d95759ba43 (diff)
configure: disable libglslang/libshaderc if the vulkan is disabled
Fixes build failures when the Vulkan headers are too old and libglslang or libshaderc are enabled.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 7af1d943e5..d203177a74 100755
--- a/configure
+++ b/configure
@@ -7154,6 +7154,10 @@ if enabled vulkan; then
check_cpp_condition vulkan "vulkan/vulkan.h" "defined(VK_VERSION_1_4) || (defined(VK_VERSION_1_3) && VK_HEADER_VERSION >= 255)"
fi
+if disabled vulkan; then
+ disable libglslang libshaderc spirv_compiler
+fi
+
if enabled x86; then
case $target_os in
mingw32*|mingw64*|win32|win64|linux|cygwin*)