1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4
5zephyr_library_sources(
6  mqtt_sn.c
7  mqtt_sn_decoder.c
8  mqtt_sn_encoder.c
9)
10
11zephyr_library_sources_ifdef(CONFIG_MQTT_SN_TRANSPORT_UDP
12  mqtt_sn_transport_udp.c
13)
14