Begin neat_bar port

This commit is contained in:
2026-07-19 23:00:46 -04:00
parent c05f7a5af9
commit 0a4c802685
11 changed files with 17 additions and 56 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ 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)