├── README.md ├── build.zig └── pogfish.png /README.md: -------------------------------------------------------------------------------- 1 | ![pogfish](./pogfish.png) 2 | -------------------------------------------------------------------------------- /build.zig: -------------------------------------------------------------------------------- 1 | const std = @import("std"); 2 | 3 | pub fn build(b: *std.Build) void { 4 | const exe = b.addExecutable(.{ 5 | .name = "pogfish", 6 | .root_source_file = b.path("pogfish.png"), 7 | .target = b.graph.host, 8 | }); 9 | 10 | b.installArtifact(exe); 11 | } 12 | -------------------------------------------------------------------------------- /pogfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/pogfish/81aa705f8c37bbd3020e85b21520e6c633b73169/pogfish.png --------------------------------------------------------------------------------