diff --git a/clocks/hello_48MHz/CMakeLists.txt b/clocks/hello_48MHz/CMakeLists.txt index cc08072..3ca96fc 100644 --- a/clocks/hello_48MHz/CMakeLists.txt +++ b/clocks/hello_48MHz/CMakeLists.txt @@ -2,7 +2,7 @@ add_executable(hello_48MHz hello_48MHz.c ) -# pull in common dependencies +# pull in common dependencies and additional clocks hardware support target_link_libraries(hello_48MHz pico_stdlib hardware_clocks) # create map/bin/hex file etc. diff --git a/uart/hello_uart/CMakeLists.txt b/uart/hello_uart/CMakeLists.txt index 713f721..0931f38 100644 --- a/uart/hello_uart/CMakeLists.txt +++ b/uart/hello_uart/CMakeLists.txt @@ -2,7 +2,7 @@ add_executable(hello_uart hello_uart.c ) -# pull in common dependencies and additional uart hardware support +# pull in common dependencies target_link_libraries(hello_uart pico_stdlib) # create map/bin/hex file etc.