cmake_minimum_required(VERSION 3.13) include(pico_sdk_import.cmake) project(hello C CXX ASM) set(CMAKE_C_STANDARD 11) set(CMAKE_CXX_STANDARD 17) pico_sdk_init() add_executable(hello src/hello.c ) pico_enable_stdio_usb(hello 1) pico_enable_stdio_uart(hello 1) pico_add_extra_outputs(hello) target_link_libraries(hello pico_stdlib)