From 3c99b14ef4f8d44328b88ff620cef4c78390501e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Thu, 18 Dec 2025 13:59:52 +0000 Subject: [PATCH] Fix CMake argument on Windows --- scripts/windows/builder.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/windows/builder.ps1 b/scripts/windows/builder.ps1 index 40669fe..44a9253 100644 --- a/scripts/windows/builder.ps1 +++ b/scripts/windows/builder.ps1 @@ -351,7 +351,7 @@ function Get-CMakeConfigureArgs { } # Build for all supported GPU archs, not just the detected arch. - $kwargs += "-DBUILD_ALL_SUPPORTED_ARCHS" + $kwargs += "-DBUILD_ALL_SUPPORTED_ARCHS=ON" # Detect Python from current environment $pythonExe = (Get-Command python -ErrorAction SilentlyContinue).Source