Fixed normal builds
This commit is contained in:
parent
7c0f20a1af
commit
102c5b418a
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue