Begin HTML output

This commit is contained in:
mitteneer 2024-04-10 16:03:35 -04:00
parent 2b22cbe6c1
commit 75a63a19fc
3 changed files with 30 additions and 17 deletions

View file

@ -15,7 +15,7 @@ pub fn build(b: *std.Build) !void {
// Example dependency:
const iguanas_dep = b.dependency("iguanas", .{ .optimize = optimize, .target = target });
exe.root_module.addImport("iguanas", iguanas_dep.module("iguanas"));
const sqlite = b.dependency("sqlite", .{
.target = target,
.optimize = optimize,
@ -28,7 +28,7 @@ pub fn build(b: *std.Build) !void {
// All dependencies **must** be added to imports above this line.
try jetzig.jetzigInit(b, exe, .{.zmpl_version = .v2});
try jetzig.jetzigInit(b, exe, .{ .zmpl_version = .v2 });
b.installArtifact(exe);