X11 library (WIP)

This commit is contained in:
2026-01-09 16:08:48 +01:00
parent 9fb8ec9454
commit a6f67d3f0d
4 changed files with 2880 additions and 5 deletions

9
packages/x11/build.zig Normal file
View File

@@ -0,0 +1,9 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const mod = b.addModule("x11", .{
.root_source_file = b.path("src/root.zig"),
});
mod.linkSystemLibrary("X11", .{});
}