Add a web browser tab.

This commit is contained in:
Greyson Parrelli
2026-08-11 12:39:14 -04:00
parent 918ccec6e1
commit a7a9429d09
12 changed files with 868 additions and 93 deletions
+5
View File
@@ -52,6 +52,11 @@ pub fn build(b: *std.Build) void {
exe.root_module.linkSystemLibrary("gtk4", .{});
exe.root_module.linkSystemLibrary("libadwaita-1", .{});
// WebKitGTK backs the web panes. There are no generated bindings for it in
// the zig-gobject set we use, so `src/webkit.zig` declares the handful of
// C entry points we need by hand and this links them.
exe.root_module.linkSystemLibrary("webkitgtk-6.0", .{});
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);