mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Add minimal Zig example
This commit is contained in:
parent
e8ce3b54f6
commit
c3a02919d3
6
.gitignore
vendored
6
.gitignore
vendored
@ -32,3 +32,9 @@ target/
|
||||
|
||||
# Broken NTFS
|
||||
nul
|
||||
|
||||
# Zig
|
||||
/zig-cache/
|
||||
/zig-out/
|
||||
/examples/Zig/*/zig-cache/
|
||||
/examples/Zig/*/zig-out/
|
||||
|
24
examples/Zig/minimal/build.zig
Normal file
24
examples/Zig/minimal/build.zig
Normal 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);
|
||||
}
|
10
examples/Zig/minimal/build.zig.zon
Normal file
10
examples/Zig/minimal/build.zig.zon
Normal 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",
|
||||
},
|
||||
},
|
||||
}
|
3
examples/Zig/minimal/c.zig
Normal file
3
examples/Zig/minimal/c.zig
Normal file
@ -0,0 +1,3 @@
|
||||
pub usingnamespace @cImport({
|
||||
@cInclude("webui.h");
|
||||
});
|
11
examples/Zig/minimal/minimal.zig
Normal file
11
examples/Zig/minimal/minimal.zig
Normal 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();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user