What's Changed
Using it
In your zig project folder (where build.zig is located), run:
zig fetch --save "git+https://github.com/Afirium/wasmer-zig-api#v0.3.0"
Then, in your build.zig
's build
function, add the following before
b.installArtifact(exe)
:
const wasmerZigAPI= b.dependency("wasmer_zig_api", .{
.target = target,
.optimize = optimize,
});
exe.root_module.addImport("wasmer", wasmerZigAPI.module("wasmer"));
exe.linkLibC();
exe.addLibraryPath(.{ .cwd_relative = "/home/path_to_your_wasmer/.wasmer/lib" });
exe.linkSystemLibrary("wasmer");
New Contributors
Full Changelog: v0.2.0...v0.3.0