pebble/build.zig

22 lines
633 B
Zig
Raw Permalink Normal View History

2026-04-13 16:58:18 +02:00
const std = @import("std");
const pebble_sdk = @import("pebble_sdk");
pub fn build(b: *std.Build) !void {
pebble_sdk.addPebbleApplication(b, .{
.name = "watchface_example",
.pebble = .{
.displayName = "Watchface Example",
.author = "Example",
.uuid = "547e02ad-00f0-46ab-b65c-55f42aefd29d",
.version = .{ .major = 1, .minor = 0 },
.targetPlatforms = &.{ .emery },
.watchapp = .{
.watchface = true,
},
},
.root_source_file = b.path("src/main.zig"),
.optimize = .ReleaseSmall,
});
}