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(.{