From 50a8ebab2815efe7eb19977971998f924c66766b Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 13 Apr 2026 19:24:03 -0600 Subject: [PATCH] Move CMakePresets windows build dirs from out/build/ to build/ --- CMakePresets.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index 73c9915aba..d6203c6d27 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -88,7 +88,7 @@ "name": "windows-msvc", "displayName": "Windows (MSVC)", "generator": "Ninja", - "binaryDir": "${sourceDir}/out/build/${presetName}", + "binaryDir": "${sourceDir}/build/${presetName}", "architecture": { "value": "x64", "strategy": "external" @@ -96,7 +96,7 @@ "cacheVariables": { "CMAKE_C_COMPILER": "cl", "CMAKE_CXX_COMPILER": "cl", - "CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install" + "CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install" }, "vendor": { "microsoft.com/VisualStudioSettings/CMake/1.0": { @@ -126,7 +126,7 @@ "name": "windows-arm64-msvc", "displayName": "Windows ARM64 (MSVC)", "generator": "Ninja", - "binaryDir": "${sourceDir}/out/build/${presetName}", + "binaryDir": "${sourceDir}/build/${presetName}", "architecture": { "value": "arm64", "strategy": "external" @@ -134,7 +134,7 @@ "cacheVariables": { "CMAKE_C_COMPILER": "cl", "CMAKE_CXX_COMPILER": "cl", - "CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install", + "CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install", "AURORA_DAWN_PROVIDER": "vendor" }, "vendor": {