mirror of
https://github.com/jetzig-framework/jetcommon.git
synced 2026-09-01 22:53:18 -06:00
updated zul dependency
This commit is contained in:
parent
3288c1baed
commit
ed326c74b9
10
build.zig
10
build.zig
@ -3,7 +3,6 @@ const std = @import("std");
|
||||
pub fn build(b: *std.Build) void {
|
||||
const target = b.standardTargetOptions(.{});
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
|
||||
const lib = b.addLibrary(.{
|
||||
.name = "jetcommon",
|
||||
.root_module = b.createModule(.{
|
||||
@ -13,9 +12,14 @@ pub fn build(b: *std.Build) void {
|
||||
}),
|
||||
});
|
||||
|
||||
const jetcommon_module = b.addModule("jetcommon", .{ .root_source_file = b.path("src/jetcommon.zig") });
|
||||
const jetcommon_module = b.addModule("jetcommon", .{
|
||||
.root_source_file = b.path("src/jetcommon.zig"),
|
||||
});
|
||||
|
||||
const zul_module = b.dependency("zul", .{ .target = target, .optimize = optimize }).module("zul");
|
||||
const zul_module = b.dependency("zul", .{
|
||||
.target = target,
|
||||
.optimize = optimize,
|
||||
}).module("zul");
|
||||
|
||||
jetcommon_module.addImport("zul", zul_module);
|
||||
lib.root_module.addImport("zul", zul_module);
|
||||
|
||||
@ -4,8 +4,8 @@
|
||||
.version = "0.1.0",
|
||||
.dependencies = .{
|
||||
.zul = .{
|
||||
.url = "https://github.com/karlseguin/zul/archive/9dff2f294807b12944bc1025b121f33c61748767.tar.gz",
|
||||
.hash = "zul-0.0.0-1oDot06QBwAogVwyG0VAUIUbJnOOfsK7f25t66lFJZi7",
|
||||
.url = "https://github.com/karlseguin/zul/archive/e770047f208cf4538fcd9fc64550c84fd5492fc4.tar.gz",
|
||||
.hash = "zul-0.0.0-1oDot9yRBwDA_ovd6GC1M_ViW3LarywMaGrH6vcuEjqv",
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user