Skip to content

Commit

Permalink
rename modules
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Dec 18, 2024
1 parent c136a79 commit 31fb3a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ pub fn build(b: *Builder) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});

const mod = b.addModule("snappy.zig", Builder.Module.CreateOptions{
const mod = b.addModule("snappyz", Builder.Module.CreateOptions{
.root_source_file = b.path("snappy.zig"),
.target = target,
.optimize = optimize,
});
_ = mod;

const lib = b.addStaticLibrary(.{
.name = "snappy",
.name = "snappyz",
.root_source_file = .{ .cwd_relative = "snappy.zig" },
.optimize = optimize,
.target = target,
Expand Down

0 comments on commit 31fb3a1

Please sign in to comment.