From 4a1ff37d630cfa8bd650fe3f9d87a89c39f14e7d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 10 Feb 2023 08:43:32 -0800 Subject: [PATCH] build conformance into dedicated directory --- build.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.zig b/build.zig index d35a2a331..05ef2e1a2 100644 --- a/build.zig +++ b/build.zig @@ -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);