UI overhaul w/neat_bar

This commit is contained in:
2026-07-19 17:27:31 -04:00
parent 0ab885d7ae
commit d84edb5429
4 changed files with 65 additions and 32 deletions
+2 -1
View File
@@ -34,7 +34,8 @@ def build(ctx):
ctx.env = ctx.all_envs[platform]
ctx.set_group(ctx.env.PLATFORM_NAME)
app_elf = '{}/pebble-app.elf'.format(ctx.env.BUILD_DIR)
ctx.pbl_build(source=ctx.path.ant_glob('src/c/**/*.c'), target=app_elf, bin_type='app')
ctx.pbl_build(source=ctx.path.ant_glob(['src/c/**/*.c', 'neat_bar/src/c/**/*.c']), target=app_elf, bin_type='app')
if build_worker:
worker_elf = '{}/pebble-worker.elf'.format(ctx.env.BUILD_DIR)