10 lines
204 B
Zig
10 lines
204 B
Zig
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", .{});
|
|
}
|