myid port (wip)

This commit is contained in:
2026-05-12 23:11:15 +02:00
parent 8d45a93e6e
commit 572f4be896
10 changed files with 278 additions and 839 deletions

View File

@@ -11,11 +11,19 @@ pub fn build(b: *std.Build) void {
const sqlite_mod = sqlite_dep.module("sqlite");
const web_dep = b.dependency("web", .{
.target = target,
.optimize = optimize,
});
const web_mod = web_dep.module("web");
const myid_mod = b.addModule("myid", .{
.root_source_file = b.path("src/root.zig"),
.target = target,
.imports = &.{
.{ .name = "sqlite", .module = sqlite_mod },
.{ .name = "web", .module = web_mod },
},
});