29 lines
526 B
CMake
29 lines
526 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_LORAWAN_SERVICES)
|
|
|
|
zephyr_library_sources(lorawan_services.c)
|
|
|
|
zephyr_library_sources_ifdef(
|
|
CONFIG_LORAWAN_APP_CLOCK_SYNC
|
|
clock_sync.c
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(
|
|
CONFIG_LORAWAN_FRAG_TRANSPORT
|
|
frag_flash.c
|
|
frag_transport.c
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(
|
|
CONFIG_LORAWAN_FRAG_TRANSPORT_DECODER_LOWMEM
|
|
frag_decoder_lowmem.c
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(
|
|
CONFIG_LORAWAN_REMOTE_MULTICAST
|
|
multicast.c
|
|
)
|
|
|
|
endif()
|