Skip to content

Commit

Permalink
removed module from build.zig that prevented compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
r4gus committed Aug 28, 2023
1 parent 397fdbe commit c5ab25b
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,6 @@ pub fn build(b: *std.build.Builder) !void {

try b.modules.put(b.dupe("cks"), cks_module);

// Allocator Module
// ------------------------------------------------

const allocator_module = b.addModule("cks", .{
.source_file = .{ .path = "profiling_allocator/main.zig" },
.dependencies = &.{
.{ .name = "profiling_allocator", .module = zbor_module },
},
});

try b.modules.put(b.dupe("profiling_allocator"), allocator_module);

// Authenticator Module
// ------------------------------------------------

Expand All @@ -80,7 +68,6 @@ pub fn build(b: *std.build.Builder) !void {
});
authenticator.addModule("fido", fido_module);
authenticator.addModule("cks", cks_module);
authenticator.addModule("profiling_allocator", allocator_module);
authenticator.addModule("snorlax", snorlax_module);
authenticator.linkSystemLibraryPkgConfigOnly("libnotify");
authenticator.linkLibC();
Expand Down

0 comments on commit c5ab25b

Please sign in to comment.