blend2d

Blend2D

Blend2D on the Zig Build System.

Usage

Add this package to build.zig.zon:

zig fetch --save git+https://github.com/KNnut/blend2d

And 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"));