Skip to content

Commit 80b5d51

Browse files
committed
update build.zig
1 parent f992fea commit 80b5d51

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

build.zig

-16
Original file line numberDiff line numberDiff line change
@@ -80,20 +80,4 @@ pub fn build(b: *std.Build) void {
8080
const run_tests = b.addRunArtifact(tests);
8181

8282
b.step("test", "Run tests").dependOn(&run_tests.step);
83-
84-
// FJKDLSJFKLJKDLJFKLSDJKLJ
85-
const target = b.standardTargetOptions(.{});
86-
const optimize = b.standardOptimizeOption(.{});
87-
const db_test = b.addExecutable(.{
88-
.name = "db-test",
89-
.root_source_file = b.path("./main.zig"),
90-
.target = target,
91-
.optimize = optimize,
92-
});
93-
94-
db_test.root_module.addImport("sqlite", sqlite);
95-
96-
const db_test_artifact = b.addRunArtifact(db_test);
97-
const run_db_test = b.step("db-test", "Run the SQLite database test");
98-
run_db_test.dependOn(&db_test_artifact.step);
9983
}

0 commit comments

Comments
 (0)