build: fix build for 0.15.0-dev.1034+bd97b6618

This commit is contained in:
CJ van den Berg 2025-07-15 16:43:13 +02:00
parent 5ea4b73191
commit 3461e8d808
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -9,9 +9,11 @@ pub fn build(b: *std.Build) void {
});
const tests = b.addTest(.{
.root_source_file = b.path("test/tests.zig"),
.target = target,
.optimize = optimize,
.root_module = b.createModule(.{
.root_source_file = b.path("test/tests.zig"),
.target = target,
.optimize = optimize,
}),
});
tests.root_module.addImport("cbor", cbor_mod);