pixman ported to the Zig build system
- Zig 100%
| .gitignore | ||
| build.zig | ||
| build.zig.zon | ||
| LICENSE | ||
| README.md | ||
pixman
pixman built with the Zig build system.
Provides a static libpixman-1 with the generic C path plus:
- x86 / x86_64: SSE2 + SSSE3
- aarch64: NEON
Usage
const pixman = b.dependency("pixman", .{
.target = target,
.optimize = optimize,
});
exe.linkLibrary(pixman.artifact("pixman-1"));
Layering
This package provides the C build only. Zig bindings live in zig-pixman, which depends on this package.