From 4714892072b500d694232d86bc965ecfa4319b0e Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sun, 1 Mar 2026 20:28:17 +0100 Subject: [PATCH] windows build fix --- implementations/Crafter.Build-Command.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/implementations/Crafter.Build-Command.cpp b/implementations/Crafter.Build-Command.cpp index bd41330..9fa5298 100644 --- a/implementations/Crafter.Build-Command.cpp +++ b/implementations/Crafter.Build-Command.cpp @@ -298,6 +298,8 @@ namespace Crafter { } else if(config.target == "wasm32-wasi") { BuildWasmStdPcm(project, config); } else { + std::cout << config.target << std::endl; + std::cout << "x86_64-pc-windows-msvc" << std::endl; throw std::runtime_error(std::format("Unkown target: {}", config.target)); } }