New
v0.1.2 - Cross-compilation
Crossterm backend now supports cross-compilation.
To compile an application for another target, just add -Dtarget=<desired target> when building your app and make sure to forward it to Tuile:
build.zig
const target = b.standardTargetOptions(.{});
const tuile = b.dependency("tuile", .{
.target = target
});