diff options
| author | graham sanderson <[email protected]> | 2024-07-29 12:34:25 -0500 |
|---|---|---|
| committer | graham sanderson <[email protected]> | 2024-07-29 12:34:25 -0500 |
| commit | 0ebe81f4c3a6b38aef82b9f3a7d7f74fbf99c831 (patch) | |
| tree | a167595da69a51b63fc09aa04d8633514d630c7c | |
| parent | cfb44a38926ec2e406dc6b91e90d601324b719d7 (diff) | |
add explcit dependency
| -rw-r--r-- | hw/bsp/rp2040/family.cmake | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/bsp/rp2040/family.cmake b/hw/bsp/rp2040/family.cmake index c81390b28..d91821ffa 100644 --- a/hw/bsp/rp2040/family.cmake +++ b/hw/bsp/rp2040/family.cmake @@ -133,7 +133,10 @@ target_sources(tinyusb_bsp INTERFACE target_include_directories(tinyusb_bsp INTERFACE ${TOP}/hw ) -target_link_libraries(tinyusb_bsp INTERFACE pico_unique_id) +target_link_libraries(tinyusb_bsp INTERFACE + pico_unique_id + hardware_clocks + ) # tinyusb_additions will hold our extra settings for examples add_library(tinyusb_additions INTERFACE) |
