mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 10:17:30 +02:00
components: use new component registration api
* Original commit: espressif/esp-idf@9eccd7c082
This commit is contained in:
committed by
suren-gabrielyan-espressif
parent
4912bef740
commit
7fb6686716
@ -1,9 +1,7 @@
|
||||
set(COMPONENT_SRCS "mdns.c"
|
||||
idf_component_register(SRCS "mdns.c"
|
||||
"mdns_console.c"
|
||||
"mdns_networking.c")
|
||||
set(COMPONENT_ADD_INCLUDEDIRS "include")
|
||||
set(COMPONENT_PRIV_INCLUDEDIRS "private_include")
|
||||
set(COMPONENT_REQUIRES lwip mbedtls console tcpip_adapter)
|
||||
|
||||
register_component()
|
||||
"mdns_networking.c"
|
||||
INCLUDE_DIRS "include"
|
||||
PRIV_INCLUDE_DIRS "private_include"
|
||||
REQUIRES lwip mbedtls console tcpip_adapter)
|
||||
|
||||
|
@ -1,3 +1,2 @@
|
||||
set(COMPONENT_SRCDIRS ".")
|
||||
set(COMPONENT_PRIV_REQUIRES unity test_utils mdns)
|
||||
register_component()
|
||||
idf_component_register(SRC_DIRS "."
|
||||
PRIV_REQUIRES unity test_utils mdns)
|
Reference in New Issue
Block a user