examples: add map-async example

Signed-off-by: Lucas Romanó <9062026+lucasromanosantos@users.noreply.github.com>
This commit is contained in:
Lucas Romanó 2022-07-17 12:54:51 -03:00 committed by Stephen Gutekanst
parent a825965208
commit 7de47a8f2d
4 changed files with 104 additions and 0 deletions

View file

@ -46,6 +46,7 @@ pub fn build(b: *std.build.Builder) void {
.{ .name = "textured-cube", .packages = &[_]Pkg{ Packages.zmath, Packages.zigimg } },
.{ .name = "ecs-app", .packages = &[_]Pkg{} },
.{ .name = "image-blur", .packages = &[_]Pkg{Packages.zigimg} },
.{ .name = "map-async", .packages = &[_]Pkg{} },
// NOTE: examples with std_platform_only should be placed at last
.{ .name = "gkurve", .packages = &[_]Pkg{ Packages.zmath, Packages.zigimg, freetype.pkg }, .std_platform_only = true },
}) |example| {