usb_host: Don't build CDC host driver for unsupported targets

pull/9137/head
Tomas Rezucha 2022-03-17 13:10:29 +01:00
rodzic c29343eb94
commit 161eaeed25
1 zmienionych plików z 15 dodań i 3 usunięć

Wyświetl plik

@ -1,3 +1,15 @@
idf_component_register(SRCS "cdc_acm_host.c"
INCLUDE_DIRS "include"
REQUIRES usb)
set(srcs)
set(include)
# As CONFIG_USB_OTG_SUPPORTED comes from Kconfig, it is not evaluated yet
# when components are being registered.
set(require usb)
if(CONFIG_USB_OTG_SUPPORTED)
list(APPEND srcs "cdc_acm_host.c")
list(APPEND include "include")
endif()
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS ${include}
REQUIRES ${require}
)