58982a53f2ab5b5ae940bcd7081f34db1d314afd
zterm Terminal User Interface Library
zterm is a terminal user interface library to implement terminal (fullscreen or inline) applications.
Note
Currently version
0.13.0is officially supported. Builds using the master version might not work.
Usage
To add or update zterm as a dependency in your project run the following command:
zig fetch --save git+https://gitea.yves-biener.de/yves-biener/zterm
Add the dependency to your module as follows in your build.zig:
const zterm: *Dependency = b.dependency("zterm", .{
.target = target,
.optimize = optimize,
});
// ...
exe.root_module.addImport("zterm", zterm.module("zterm"));
For an example you can take a look at build.zig for an example.
Languages
Zig
100%