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

This commit is contained in:
Jorijn van der Graaf 2026-03-01 20:49:31 +01:00
commit fa6c8a7fea
2 changed files with 5 additions and 3 deletions

View file

@ -329,6 +329,8 @@ namespace Crafter {
// //} // //}
// } // }
std::cout << cmd << std::endl; std::cout << cmd << std::endl;
return RunCommand(cmd); std::string result = RunCommand(cmd);
std::cout << result << std::endl;
return result
} }
} }

View file

@ -56,14 +56,14 @@
"name": "lib-windows-msvc", "name": "lib-windows-msvc",
"extends": ["base", "libs-windows-msvc"], "extends": ["base", "libs-windows-msvc"],
"type":"library", "type":"library",
"implementations": ["implementations/main"] "implementations": ["implementations/main"],
}, },
{ {
"name": "lib-windows-msvc-debug", "name": "lib-windows-msvc-debug",
"extends": ["base", "libs-windows-msvc-debug"], "extends": ["base", "libs-windows-msvc-debug"],
"type":"library", "type":"library",
"implementations": ["implementations/main"], "implementations": ["implementations/main"],
"debug": true "debug": true,
} }
] ]
} }