Several wifi drivers add some form of zephyr_include_directories(.) which isn't needed since the headers in the specific driver dir get included via #include "foo.h". So we can remove any uses of zephyr_include_directories(.) Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
15 lines
211 B
CMake
15 lines
211 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_WIFI_ESP)
|
|
|
|
zephyr_library_include_directories(
|
|
${ZEPHYR_BASE}/drivers/modem
|
|
)
|
|
|
|
zephyr_sources(
|
|
esp.c
|
|
esp_socket.c
|
|
esp_offload.c
|
|
)
|
|
endif()
|