From 4662ee0255369d786e98280427024ef98c451d3e Mon Sep 17 00:00:00 2001 From: scribam Date: Thu, 20 Feb 2020 08:52:51 +0100 Subject: [PATCH] cmake: Update glslang build options --- Vulkan/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vulkan/CMakeLists.txt b/Vulkan/CMakeLists.txt index b229cf3330..269c5cf750 100644 --- a/Vulkan/CMakeLists.txt +++ b/Vulkan/CMakeLists.txt @@ -1,8 +1,8 @@ +set(BUILD_EXTERNAL OFF CACHE BOOL "Build external dependencies in /External" FORCE) set(SKIP_GLSLANG_INSTALL ON CACHE BOOL "Skip installation" FORCE) set(ENABLE_SPVREMAPPER OFF CACHE BOOL "Enables building of SPVRemapper" FORCE) set(ENABLE_GLSLANG_BINARIES OFF CACHE BOOL "Builds glslangValidator and spirv-remap" FORCE) -set(ENABLE_OPT OFF CACHE BOOL "Enables spirv-opt capability if present" FORCE) set(ENABLE_HLSL OFF CACHE BOOL "Enables HLSL input support" FORCE) -set(ENABLE_AMD_EXTENSIONS ON CACHE BOOL "Enables support of AMD-specific extensions" FORCE) -set(ENABLE_NV_EXTENSIONS ON CACHE BOOL "Enables support of Nvidia-specific extensions" FORCE) +set(ENABLE_OPT OFF CACHE BOOL "Enables spirv-opt capability if present" FORCE) +set(ENABLE_CTEST OFF CACHE BOOL "Enables testing" FORCE) add_subdirectory(glslang)