feat: update to Zig v2024.1.0-mach
This commit is contained in:
parent
4363360ce4
commit
040e15f72e
|
@ -15,7 +15,7 @@ pub fn build(b: *std.Build) void {
|
||||||
// set a preferred release mode, allowing the user to decide how to optimize.
|
// set a preferred release mode, allowing the user to decide how to optimize.
|
||||||
const optimize = b.standardOptimizeOption(.{});
|
const optimize = b.standardOptimizeOption(.{});
|
||||||
|
|
||||||
_ = b.addModule("bit-string", .{ .source_file = .{ .path = "src/lib.zig" } });
|
_ = b.addModule("bit-string", .{ .root_source_file = .{ .path = "src/lib.zig" } });
|
||||||
|
|
||||||
const lib = b.addStaticLibrary(.{
|
const lib = b.addStaticLibrary(.{
|
||||||
.name = "bit-string",
|
.name = "bit-string",
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
.{
|
.{
|
||||||
.name = "bit-string",
|
.name = "bit-string",
|
||||||
.version = "0.1.0",
|
.version = "0.1.0",
|
||||||
|
.paths = .{
|
||||||
|
"build.zig",
|
||||||
|
"build.zig.zon",
|
||||||
|
"LICENSE",
|
||||||
|
"README.md",
|
||||||
|
"src"
|
||||||
|
},
|
||||||
.dependencies = .{},
|
.dependencies = .{},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue