const std = @import( "std" ); pub fn build( b :*std.Build ) void { const exe = b.addExecutable( .{ .name = "tokenizer", .root_source_file = b.path( "pan-tokenizer.zig" ), .target = b.graph.host, } ); b.installArtifact( exe ); }