summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArielG-NV <159081215+ArielG-NV@users.noreply.github.com>2025-06-11 20:38:56 -0700
committerGitHub <noreply@github.com>2025-06-12 03:38:56 +0000
commitc83a6d5b83a0b12f7029fd17fc8037beddb79834 (patch)
tree832f0bec92d5d2ce16aba4efb5816bf33fac731e
parentbe313103884a11f32f3c95ed9d5834647fef2807 (diff)
fix `SLANG_ENABLE_IR_BREAK_ALLOC` (#7418)
fixes: #7417 Define was called `SLANG_ENABLE_IR_BREAK_ALLOC,`. This is incorrect, supposed to be `SLANG_ENABLE_IR_BREAK_ALLOC`.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ca3d4b806..b8b1645ef 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -111,7 +111,7 @@ option(
option(SLANG_ENABLE_DXIL "Enable generating DXIL with DXC" ON)
option(SLANG_ENABLE_FULL_IR_VALIDATION "Enable full IR validation (SLOW!)")
-option(SLANG_ENABLE_IR_BREAK_ALLOC, "Enable _debugUID on IR allocation")
+option(SLANG_ENABLE_IR_BREAK_ALLOC "Enable _debugUID on IR allocation")
option(SLANG_ENABLE_ASAN "Enable ASAN (address sanitizer)")
option(SLANG_ENABLE_PREBUILT_BINARIES "Enable using prebuilt binaries" ON)