File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,12 @@ else()
69
69
target_link_libraries (${COMPONENT_LIB} PUBLIC "-L ${CMAKE_CURRENT_SOURCE_DIR} /lib" "-lstdc++" )
70
70
target_compile_definitions (${COMPONENT_LIB} PUBLIC -DUSING_IBUS_FASTER_GET )
71
71
if (NOT CONFIG_NO_BLOBS )
72
- set (blobs "gcc" "hal" "core" "net80211" "phy" "rtc" "clk" "pp" "smartconfig" "ssc" "espnow" )
72
+ set (blobs "gcc" "hal" "phy" "rtc" "clk" "smartconfig" "ssc" )
73
+ if (CONFIG_ESP8266_WIFI_DEBUG_LOG_ENABLE )
74
+ list (APPEND blobs "core_dbg" "net80211_dbg" "pp_dbg" "espnow_dbg" )
75
+ else ()
76
+ list (APPEND blobs "core" "net80211" "pp" "espnow" )
77
+ endif ()
73
78
foreach (blob ${blobs} )
74
79
add_library (${blob} STATIC IMPORTED )
75
80
set_property (TARGET ${blob} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR} /lib/lib${blob}.a )
You can’t perform that action at this time.
0 commit comments