zephyr/drivers/wifi/esp/CMakeLists.txt
Kumar Gala 2235c71ced drivers: wifi: Remove unncessary zephyr_include_directories
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>
2021-03-23 13:14:38 -05:00

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()