git.lucas.co / cce-compositor
Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git

commita909c4df57734da4b06937d29264655604eb5be3
parent27dd8541f4
authorIsaac Freund <[email protected]>
date2020-04-11 23:10
Remove unneeded pixman linking

 build.zig | 2 --
 1 file changed, 2 deletions(-)

diff --git a/build.zig b/build.zig
index 23ccd47..a1f7c78 100644
--- a/build.zig
+++ b/build.zig
@@ -20,7 +20,6 @@ pub fn build(b: *Builder) void {
     exe.addCSourceFile("include/render.c", &[_][]const u8{"-std=c99"});
 
     exe.linkLibC();
-    exe.linkSystemLibrary("pixman-1");
     exe.linkSystemLibrary("wayland-server");
     exe.linkSystemLibrary("wlroots");
     exe.linkSystemLibrary("xkbcommon");
@@ -42,7 +41,6 @@ pub fn build(b: *Builder) void {
     test_exe.addCSourceFile("include/render.c", &[_][]const u8{"-std=c99"});
 
     test_exe.linkLibC();
-    test_exe.linkSystemLibrary("pixman-1");
     test_exe.linkSystemLibrary("wayland-server");
     test_exe.linkSystemLibrary("wlroots");
     test_exe.linkSystemLibrary("xkbcommon");