From f0548165b94c84fdabef8ca2d13d83398e857a98 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sun, 1 Mar 2026 15:54:10 +0100 Subject: [PATCH] windows build fixes --- implementations/Crafter.Build-Command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/implementations/Crafter.Build-Command.cpp b/implementations/Crafter.Build-Command.cpp index 2ee90df..ad3b160 100644 --- a/implementations/Crafter.Build-Command.cpp +++ b/implementations/Crafter.Build-Command.cpp @@ -151,10 +151,10 @@ namespace Crafter { std::string msvcVersion = folders.front(); - clDir = std::format("{}\\{}\\bin\\Hostx64\\x64", directoryPath, msvcVersion); + clDir = std::format("{}\\MSVC\\{}\\bin\\Hostx64\\x64", directoryPath, msvcVersion); clangClDir = std::format("{}\\Llvm\\x64\\bin", directoryPath); - std::string sourceFilePath = directoryPath + "\\" + msvcVersion + "\\modules\\std.ixx"; + std::string sourceFilePath = directoryPath + "\\MSVC\\" + msvcVersion + "\\modules\\std.ixx"; std::println("Auto-Detected:\nCL: {}Clang: {}\nstd.ixx: {}", clDir, clangClDir, sourceFilePath);