X-Git-Url: http://git.scottworley.com/tattlekey/blobdiff_plain/e2173399236a55d37e243f666f4052605517699c..00ca9fa67636580409193bf7a9baf394113b4af8:/client/CMakeLists.txt diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 84361f4..50ae120 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -7,13 +7,31 @@ set(CMAKE_C_STANDARD 11) set(CMAKE_CXX_STANDARD 17) pico_sdk_init() -add_executable(tattlekey tattlekey.c) +add_executable(tattlekey + blink.c + button.c + config.c + net.c + press.c + tattlekey.c + ) + +pico_enable_stdio_usb(tattlekey 1) +pico_enable_stdio_uart(tattlekey 1) pico_add_extra_outputs(tattlekey) +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_none + pico_cyw43_arch_lwip_threadsafe_background ) -install(TARGETS tattlekey RUNTIME LIBRARY ARCHIVE) +install(TARGETS tattlekey) +install(FILES build/tattlekey.uf2 TYPE DATA)