579ca90e25
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>
15 lines
222 B
CMake
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()
|