TheOnlySilverClaw/zig-umka
Zig bindings for the Umka scripting language
Zig bindings for the Umka scripting language.
Tested against a build from Commit 127e678.
There are two modules avaiable:
You can add either one as an import like this:
const umka_dependency = b.dependency("umka", .{});
exe_module.addImport("umka", umka_dependency.module("binding"));
// or
exe_module.addImport("umka", umka_dependency.module("wrapper"));
This project only provides the bindings!
You have to build and link Umka as a static libary.
Build configuration and further examples can be found under examples.
zig build run