windows build fixes
Some checks failed
demo.yaml / windows build fixes (push) Failing after 0s

This commit is contained in:
Jorijn van der Graaf 2026-03-01 15:54:10 +01:00
commit f0548165b9

View file

@ -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);