zephyr/drivers/wifi/esp_at/CMakeLists.txt
Daniel Leung 579ca90e25 drivers: wifi: build as static library
Instead of putting object files inside libzephyr.a,
simply build a separate static library as most other
driver types are doing this already.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
2021-08-17 06:06:03 -04:00

15 lines
222 B
CMake

# SPDX-License-Identifier: Apache-2.0
if(CONFIG_WIFI_ESP_AT)
zephyr_library_include_directories(
${ZEPHYR_BASE}/drivers/modem
)
zephyr_library_sources(
esp.c
esp_socket.c
esp_offload.c
)
endif()