diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-03-20 22:52:03 +0100 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-03-20 22:52:03 +0100 |
| commit | 5ca93a57ba1d8b9326f5f92ecb4f94da320fe617 (patch) | |
| tree | adae0964bdec4c41ae133663393da528e8fcd747 /build.zig | |
| parent | ba6b8350b17e0198c739893430a8682072f25629 (diff) | |
| download | river-5ca93a57ba1d8b9326f5f92ecb4f94da320fe617.tar.gz river-5ca93a57ba1d8b9326f5f92ecb4f94da320fe617.tar.xz | |
Fix build.zig
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -15,6 +15,11 @@ pub fn build(b: *Builder) void { exe.setTarget(target); exe.setBuildMode(mode); exe.linkLibC(); + exe.linkSystemLibrary("pixman"); + exe.linkSystemLibrary("wayland-server"); + exe.linkSystemLibrary("wlroots"); + exe.linkSystemLibrary("xkbcommon"); + exe.addIncludeDir("protocol"); exe.install(); const run_cmd = exe.run(); |
