From fa6c8a7fea1907949f7b38fec3b8d28af34b6404 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sun, 1 Mar 2026 20:49:31 +0100 Subject: [PATCH] windows build fix --- implementations/Crafter.Build-Command.cpp | 4 +++- project.json | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/implementations/Crafter.Build-Command.cpp b/implementations/Crafter.Build-Command.cpp index 9fa5298..8ea637e 100644 --- a/implementations/Crafter.Build-Command.cpp +++ b/implementations/Crafter.Build-Command.cpp @@ -329,6 +329,8 @@ namespace Crafter { // //} // } std::cout << cmd << std::endl; - return RunCommand(cmd); + std::string result = RunCommand(cmd); + std::cout << result << std::endl; + return result } } \ No newline at end of file diff --git a/project.json b/project.json index b553389..49ed999 100644 --- a/project.json +++ b/project.json @@ -56,14 +56,14 @@ "name": "lib-windows-msvc", "extends": ["base", "libs-windows-msvc"], "type":"library", - "implementations": ["implementations/main"] + "implementations": ["implementations/main"], }, { "name": "lib-windows-msvc-debug", "extends": ["base", "libs-windows-msvc-debug"], "type":"library", "implementations": ["implementations/main"], - "debug": true + "debug": true, } ] } \ No newline at end of file