From 5ae287b240ad1ee0584064cd9a8c9ce049f49053 Mon Sep 17 00:00:00 2001 From: likunqiao Date: Tue, 19 Oct 2021 16:06:13 +0800 Subject: [PATCH] Bug fix: cmakelist update for build ieee802154 driver from src --- components/ieee802154/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ieee802154/CMakeLists.txt b/components/ieee802154/CMakeLists.txt index 9db0e672a5..4443262dae 100644 --- a/components/ieee802154/CMakeLists.txt +++ b/components/ieee802154/CMakeLists.txt @@ -9,8 +9,8 @@ if(CONFIG_IEEE802154_ENABLED) idf_component_get_property(esp_phy_lib esp_phy COMPONENT_LIB) if(CONFIG_IEEE802154_LIB_FROM_INTERNAL_SRC) idf_component_get_property(ieee802154_lib ieee802154_driver COMPONENT_LIB) - target_link_libraries(${COMPONENT_LIB} INTERFACE $ libphy.a libbtbb.a - $) + target_link_libraries(${COMPONENT_LIB} INTERFACE $ + $ libphy.a libbtbb.a) else() target_link_libraries(${COMPONENT_LIB} INTERFACE "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib/${idf_target}") target_link_libraries(${COMPONENT_LIB} INTERFACE $ lib802154.a libphy.a libbtbb.a