Blend2D on the Zig Build System.
Add this package to build.zig.zon:
zig fetch --save git+https://github.com/KNnut/blend2dAnd then import blend2d in build.zig with:
const blend2d_dep = b.dependency("blend2d", .{
.target = target,
.optimize = optimize,
});
exe.root_module.linkLibrary(blend2d_dep.artifact("blend2d"));