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:
parent
48f51bbeb6
commit
ce05dddea3
1 changed files with 1 additions and 0 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue