diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-11-09 23:58:32 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-11-09 23:58:32 +0000 |
commit | 2d65d9d3515a523d9cb8d242c3fc89671ae97d63 (patch) | |
tree | a568a510a72f4aaa484344e2e7b6a9b76a348727 /build.zig | |
parent | 68c104c8b0580c51c9f16ec33d6a957fd4c08c0c (diff) | |
download | zbt-2d65d9d3515a523d9cb8d242c3fc89671ae97d63.tar.gz zbt-2d65d9d3515a523d9cb8d242c3fc89671ae97d63.tar.bz2 zbt-2d65d9d3515a523d9cb8d242c3fc89671ae97d63.tar.xz zbt-2d65d9d3515a523d9cb8d242c3fc89671ae97d63.zip |
Add bencoding as well as bdecoding
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |