shaderc building changes

This commit is contained in:
2026-03-26 13:50:04 +02:00
parent eb5f44e298
commit 080b6742bb
11 changed files with 100 additions and 45 deletions

View File

@@ -0,0 +1,17 @@
diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt
index d44f62a..16bad95 100644
--- a/third_party/CMakeLists.txt
+++ b/third_party/CMakeLists.txt
@@ -87,7 +87,11 @@ if (NOT TARGET glslang)
# Glslang tests are off by default. Turn them on if testing Shaderc.
set(GLSLANG_TESTS ON)
endif()
- set(GLSLANG_ENABLE_INSTALL $<NOT:${SKIP_GLSLANG_INSTALL}>)
+ if (${SKIP_GLSLANG_INSTALL})
+ set(GLSLANG_ENABLE_INSTALL OFF)
+ else()
+ set(GLSLANG_ENABLE_INSTALL ON)
+ endif()
add_subdirectory(${SHADERC_GLSLANG_DIR} glslang)
endif()
if (NOT TARGET glslang)