Skip to content

Commit

Permalink
Merge branch 'bugfix/add-missing-dependency' into 'master'
Browse files Browse the repository at this point in the history
change: add missing dependency on `driver`

See merge request espressif/esp-zboss-lib!70
  • Loading branch information
chshu committed Aug 27, 2024
2 parents 053e273 + 5fb404d commit 1bc3ee8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ if(CONFIG_ZB_ENABLED)

if(CONFIG_ZB_DEBUG_MODE)
add_prebuilt_library(zboss_port_lib "${CMAKE_CURRENT_SOURCE_DIR}/lib/${idf_target}/libzboss_port.a"
PRIV_REQUIRES ieee802154 efuse esp_system esp_hw_support)
PRIV_REQUIRES ieee802154 efuse esp_system esp_hw_support
REQUIRES driver)
else()
add_prebuilt_library(zboss_port_lib "${CMAKE_CURRENT_SOURCE_DIR}/lib/${idf_target}/libzboss_port.debug.a"
PRIV_REQUIRES ieee802154 efuse esp_system esp_hw_support)
PRIV_REQUIRES ieee802154 efuse esp_system esp_hw_support
REQUIRES driver)
endif()

list(APPEND ZBOSS_LIBS zboss_stack_lib zboss_port_lib)
Expand Down

0 comments on commit 1bc3ee8

Please sign in to comment.