From 0ea45bb714626963f0454aad13517e02dba8c55c Mon Sep 17 00:00:00 2001 From: XXIV <13811862+thechampagne@users.noreply.github.com> Date: Sat, 2 Dec 2023 00:51:10 +0300 Subject: [PATCH] remove unnecessary step --- build.zig | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/build.zig b/build.zig index 54917a8..ba14833 100644 --- a/build.zig +++ b/build.zig @@ -18,22 +18,6 @@ pub fn build(b: *std.Build) void { const opts = .{ .target = target, .optimize = optimize }; const deque_module = b.dependency("deque", opts).module("zig-deque"); - const lib = b.addStaticLibrary(.{ - .name = "bktree", - // In this case the main source file is merely a path, however, in more - // complicated build scripts, this could be a generated file. - .root_source_file = .{ .path = "src/lib.zig" }, - .target = target, - .optimize = optimize, - }); - - lib.addModule("deque", deque_module); - - // This declares intent for the library to be installed into the standard - // location when the user invokes the "install" step (the default step when - // running `zig build`). - b.installArtifact(lib); - // Creates a step for unit testing. This only builds the test executable // but does not run it. const main_tests = b.addTest(.{