Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 461 Bytes

File metadata and controls

20 lines (13 loc) · 461 Bytes

libseat zig

seatd/libseat, packaged for the Zig build system.

Built with the seatd backend (no logind/systemd dependency).

Using

First, update your build.zig.zon:

zig fetch --save git+https://github.com/allyourcodebase/libseat.git

Then in your build.zig:

const libseat = b.dependency("libseat", .{ .target = target, .optimize = optimize });
exe.linkLibrary(libseat.artifact("seat"));