mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 12:16:25 +00:00
This finishes refactor of splitting off net_config library name from net_app library, started inc60df1311
,c89a06dbc
. This commit makes sure that Kconfig options are prefixed with CONFIG_NET_CONFIG_ instead of CONFIG_NET_APP_, and propagates these changes thru the app configs in the tree. Also, minor dependency, etc. tweaks are made. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
19 lines
667 B
CMake
19 lines
667 B
CMake
add_subdirectory_if_kconfig(coap)
|
|
add_subdirectory_if_kconfig(lwm2m)
|
|
add_subdirectory_if_kconfig(sntp)
|
|
add_subdirectory_ifdef(CONFIG_DNS_RESOLVER dns)
|
|
add_subdirectory_ifdef(CONFIG_MQTT_LIB mqtt)
|
|
add_subdirectory_ifdef(CONFIG_NET_APP app)
|
|
add_subdirectory_ifdef(CONFIG_NET_CONFIG_SETTINGS config)
|
|
add_subdirectory_ifdef(CONFIG_NET_SOCKETS sockets)
|
|
add_subdirectory_ifdef(CONFIG_TLS_CREDENTIALS tls_credentials)
|
|
add_subdirectory_ifdef(CONFIG_WEBSOCKET websocket)
|
|
|
|
if(CONFIG_HTTP_PARSER_URL
|
|
OR CONFIG_HTTP_PARSER
|
|
OR CONFIG_HTTP)
|
|
add_subdirectory(http)
|
|
endif()
|
|
|
|
add_subdirectory_ifdef(CONFIG_OPENTHREAD_PLAT openthread)
|