From f560b775b4ca594a6147a4b1da4981178f4f8265 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Fri, 15 Jul 2022 14:31:20 -0400 Subject: [PATCH] changed how cmake outputs files made cmake outputs a make file that has an autobar.c, not a blink.c this is for posterity, not to be confused by file naming --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d78549c..4c1b931 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,16 +11,16 @@ set(CMAKE_CXX_STANDARD 17) pico_sdk_init() add_executable( - blink - blink.c + autobar + autobar.c ) # pull in common dependencies target_link_libraries( - blink + autobar pico_stdlib - ${CMAKE_SOURCE_DIR}/rusty/target/thumbv6m-none-eabi/release/librusty.a + # ${CMAKE_SOURCE_DIR}/rusty/target/thumbv6m-none-eabi/release/librusty.a ) # create map/bin/hex file etc. -pico_add_extra_outputs(blink) +pico_add_extra_outputs(autobar)