diff --git a/examples/pico_w/CMakeLists.txt b/examples/pico_w/CMakeLists.txt index b86016ac..e7e935ca 100644 --- a/examples/pico_w/CMakeLists.txt +++ b/examples/pico_w/CMakeLists.txt @@ -26,9 +26,15 @@ set(CMAKE_CXX_STANDARD 17) # initialize the Raspberry Pi Pico SDK pico_sdk_init() +# Add missing files here +set(BTSTACK_MISSING_SOURCES + ${BTSTACK_ROOT}/src/hci_event_builder.c +) + add_executable(bluepad32_picow_example_app src/main.c src/my_platform.c + ${BTSTACK_MISSING_SOURCES} ) target_include_directories(bluepad32_picow_example_app PRIVATE