X-Git-Url: http://git.scottworley.com/tattlekey/blobdiff_plain/5ec2b60aca31cb3f8f0da44017885bc08b72a6b2..d234f6b3a74b28ac8e506a5900c275d51cdc7952:/client/CMakeLists.txt diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index d07ff63..2805ed0 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -9,8 +9,22 @@ pico_sdk_init() add_executable(tattlekey tattlekey.c) +pico_enable_stdio_usb(tattlekey 1) +pico_enable_stdio_uart(tattlekey 1) + pico_add_extra_outputs(tattlekey) -target_link_libraries(tattlekey pico_stdlib) +target_include_directories(tattlekey PRIVATE + ${CMAKE_CURRENT_LIST_DIR} + + # Per https://stackoverflow.com/a/76988599 + ${CMAKE_CURRENT_LIST_DIR}/.. + ) + +target_link_libraries(tattlekey + pico_stdlib + pico_cyw43_arch_lwip_threadsafe_background + ) -install(TARGETS tattlekey RUNTIME LIBRARY ARCHIVE) +install(TARGETS tattlekey) +install(FILES build/tattlekey.uf2 TYPE DATA)