21 lines
633 B
Zig
21 lines
633 B
Zig
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,
|
|
});
|
|
}
|