From 881927edfcd71e97b180e689b745b3bfbe3853af Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Sun, 12 Sep 2021 16:20:49 -0400 Subject: Clean-up CMakeLists.txt Remove hpp files from add_executable() --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16cbf6c..7825526 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,21 +42,17 @@ add_executable(pico-watch pico-watch.cpp app/app_manager.cpp init.cpp - init.hpp buttons.cpp - buttons.hpp hal/api.cpp apps/home_menu/main.cpp - apps/home_menu/main.hpp apps/main_clock/main.cpp - apps/main_clock/main.hpp apps/settings/main.cpp - apps/settings/main.hpp apps/tests/main.cpp ) pico_set_program_name(pico-watch "pico-watch") pico_set_program_version(pico-watch "0.1") + # To access uart on a Pico connected directly to a Raspberry Pi (4 B): `minicom -b 115200 -o -D /dev/ttyS0` pico_enable_stdio_uart(pico-watch 1) -- cgit v1.2.3-54-g00ecf