Fix build.zig
This commit is contained in:
parent
ba6b8350b1
commit
5ca93a57ba
1 changed files with 5 additions and 0 deletions
|
@ -15,6 +15,11 @@ pub fn build(b: *Builder) void {
|
||||||
exe.setTarget(target);
|
exe.setTarget(target);
|
||||||
exe.setBuildMode(mode);
|
exe.setBuildMode(mode);
|
||||||
exe.linkLibC();
|
exe.linkLibC();
|
||||||
|
exe.linkSystemLibrary("pixman");
|
||||||
|
exe.linkSystemLibrary("wayland-server");
|
||||||
|
exe.linkSystemLibrary("wlroots");
|
||||||
|
exe.linkSystemLibrary("xkbcommon");
|
||||||
|
exe.addIncludeDir("protocol");
|
||||||
exe.install();
|
exe.install();
|
||||||
|
|
||||||
const run_cmd = exe.run();
|
const run_cmd = exe.run();
|
||||||
|
|
Loading…
Reference in a new issue