From 2d65d9d3515a523d9cb8d242c3fc89671ae97d63 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Thu, 9 Nov 2023 23:58:32 +0000 Subject: Add bencoding as well as bdecoding --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 96ba17c..9712335 100644 --- a/build.zig +++ b/build.zig @@ -27,7 +27,7 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); - //b.installArtifact(unit_tests); // Useful if you want to debug the test binary with lldb or something + b.installArtifact(unit_tests); // Useful if you want to debug the test binary with lldb or something const run_unit_tests = b.addRunArtifact(unit_tests); const test_step = b.step("test", "Run unit tests"); -- cgit v1.2.3-ZIG