Add minimal Zig example

This commit is contained in:
Louis Pearson 2023-03-18 14:38:11 -06:00
parent e8ce3b54f6
commit c3a02919d3
5 changed files with 54 additions and 0 deletions

6
.gitignore vendored
View File

@ -32,3 +32,9 @@ target/
# Broken NTFS
nul
# Zig
/zig-cache/
/zig-out/
/examples/Zig/*/zig-cache/
/examples/Zig/*/zig-out/

View File

@ -0,0 +1,24 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const webui = b.dependency("webui", .{});
const exe = b.addExecutable(.{
.name = "minimal",
.root_source_file = .{ .path = "minimal.zig" },
.target = target,
.optimize = optimize,
});
exe.linkLibrary(webui.artifact("webui"));
exe.install();
const run = exe.run();
run.step.dependOn(b.getInstallStep());
const run_step = b.step("run", "Runs the minimal zig webui example");
run_step.dependOn(&run.step);
}

View File

@ -0,0 +1,10 @@
.{
.name = "minimal",
.version = "0.0.1",
.dependencies = .{
.webui = .{
.url = "https://github.com/desttinghim/webui/archive/e8ce3b54f6975c71249c0cc5898ffe7273e81055.tar.gz",
.hash = "1220ed6841d9b2ffdd69a496dab958d71059b9d73aef655b9169b975760079582177",
},
},
}

View File

@ -0,0 +1,3 @@
pub usingnamespace @cImport({
@cInclude("webui.h");
});

View File

@ -0,0 +1,11 @@
const c = @import("c.zig");
const std = @import("std");
pub fn main() !void {
var my_window: *c.webui_window_t = c.webui_new_window();
if (!c.webui_show(my_window, "<html>Hello</html>", c.webui.browser.any)) {
std.log.err("Unable to show webui", .{});
return error.ShowWebui;
}
c.webui_wait();
}