build conformance into dedicated directory

This commit is contained in:
Mitchell Hashimoto
2023-02-10 08:43:32 -08:00
parent 7d16acdf06
commit 4a1ff37d63

View File

@ -496,6 +496,8 @@ fn conformanceSteps(
const c_exe = b.addExecutable(name, path);
c_exe.setTarget(target);
c_exe.setBuildMode(mode);
c_exe.setOutputDir("zig-out/bin/conformance");
c_exe.install();
// Store the mapping
try map.put(name, c_exe);