Skip to content

Commit

Permalink
Merge pull request #12 from Hanaasagi/adapt-nightly-build
Browse files Browse the repository at this point in the history
chore: compact latest zig version
  • Loading branch information
magurotuna committed Feb 9, 2024
2 parents 7113806 + 6fab58c commit 95ec652
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.zig
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
const std = @import("std");

pub fn build(b: *std.build.Builder) void {
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});

const optimize = b.standardOptimizeOption(.{});

_ = b.addModule("zig-deque", .{
.source_file = .{ .path = "src/deque.zig" },
.dependencies = &.{},
.root_source_file = .{ .path = "src/deque.zig" },
.imports = &.{},
});

const lib = b.addStaticLibrary(.{
Expand Down

0 comments on commit 95ec652

Please sign in to comment.