diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-08-13 13:01:48 +1000 |
|---|---|---|
| committer | cooljqln <cooljqln@noreply.codeberg.org> | 2024-08-13 06:02:54 +0000 |
| commit | 822c9dc93e868254059598ddeb58713135f0a4a1 (patch) | |
| tree | de739a12eba1a9fb1a37f621c688d148dcbba26d /lib | |
| parent | 5a02f34ed9468165104c188e2d358639842bd518 (diff) | |
| download | tangara-fw-822c9dc93e868254059598ddeb58713135f0a4a1.tar.gz | |
Fix build errors from stricter visibility requirements
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/console/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | lib/fatfs/CMakeLists.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/console/CMakeLists.txt b/lib/console/CMakeLists.txt index 5904ac5a..093380e1 100644 --- a/lib/console/CMakeLists.txt +++ b/lib/console/CMakeLists.txt @@ -28,4 +28,4 @@ idf_component_register(SRCS "commands.c" ${argtable_srcs} INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR} REQUIRES vfs - PRIV_REQUIRES driver) + PRIV_REQUIRES driver esp_vfs_console) diff --git a/lib/fatfs/CMakeLists.txt b/lib/fatfs/CMakeLists.txt index b6a288e0..f641ca86 100644 --- a/lib/fatfs/CMakeLists.txt +++ b/lib/fatfs/CMakeLists.txt @@ -22,9 +22,9 @@ else() list(APPEND include_dirs "vfs") - list(APPEND requires "sdmmc") + list(APPEND requires "sdmmc" "esp_driver_sdmmc" "esp_driver_sdspi") - list(APPEND priv_requires "vfs") + list(APPEND priv_requires "vfs" "esp_driver_gpio") endif() idf_component_register(SRCS ${srcs} |
