Fix ensure pixman located

Zig was having trouble finding the proper headers on void, likely
because pixman is linked as pixman-1.
This commit is contained in:
Isaac Freund 2020-05-02 16:04:14 +02:00
parent 48f51bbeb6
commit ce05dddea3
No known key found for this signature in database
GPG key ID: 86DED400DDFD7A11

View file

@ -42,6 +42,7 @@ fn addDeps(exe: *std.build.LibExeObjStep, protocol_step: *std.build.Step) void {
exe.addIncludeDir(".");
exe.linkLibC();
exe.linkSystemLibrary("pixman-1");
exe.linkSystemLibrary("wayland-server");
exe.linkSystemLibrary("wlroots");
exe.linkSystemLibrary("xkbcommon");