fixes
Some checks failed
CI / build-test-release (push) Failing after 8m31s

This commit is contained in:
Jorijn van der Graaf 2026-04-30 02:20:19 +02:00
commit 0ab30a1d81
5 changed files with 249 additions and 18 deletions

View file

@ -33,7 +33,7 @@ namespace {
}
fs::path TestBinaryPath(const Configuration& cfg) {
fs::path outputDir = cfg.path/"bin"/std::format("{}-{}-{}", cfg.name, cfg.target, cfg.march);
fs::path outputDir = cfg.BinDir();
return outputDir / (TargetIsWindows(cfg.target) ? cfg.outputName + ".exe" : cfg.outputName);
}