Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
596 B

# Copyright (c) 2023 Trackunit Corporation
# SPDX-License-Identifier: Apache-2.0
if(CONFIG_MODEM_MODULES)
zephyr_library()
zephyr_library_sources_ifdef(CONFIG_MODEM_CHAT modem_chat.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_CMUX modem_cmux.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_PIPE modem_pipe.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_PIPELINK modem_pipelink.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_PPP modem_ppp.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_STATS modem_stats.c)
zephyr_library_sources_ifdef(CONFIG_MODEM_UBX modem_ubx.c)
add_subdirectory(backends)
endif()