Fixed normal builds

This commit is contained in:
Kyler Olsen 2025-12-07 23:18:11 -07:00
parent 7c0f20a1af
commit 102c5b418a
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ def build_macos():
# ---------------------------------------------------------------------
def build_main():
sources = list(SRC_DIR.glob("*.c"))
objects = [compile_source(s, is_test=False) for s in sources]
objects = [compile_source(s, is_test=False) for s in sources if s.name != 'pico_main.c']
link_executable(objects, TARGET)