Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 560 Bytes

File metadata and controls

21 lines (14 loc) · 560 Bytes

abseil

abseil-cpp but packaged for Zig.

Used by protobuf packaged for Zig.

How to add to your project

zig fetch --save git+https://github.com/allyourcodebase/abseil.git

You can then access the available libraries and executables like this:

const abseil_dep = b.dependency("abseil", .{
    .target = target,
    .optimize = optimize,
});

// libabseil
const libabseil = abseil_dep.artifact("libabseil");