1# SPDX-License-Identifier: Apache-2.0
2
3
4zephyr_sources_ifdef(CONFIG_BT_DIS dis.c)
5
6zephyr_sources_ifdef(CONFIG_BT_CTS cts.c)
7
8zephyr_sources_ifdef(CONFIG_BT_HRS hrs.c)
9
10zephyr_sources_ifdef(CONFIG_BT_TPS tps.c)
11
12if(CONFIG_BT_BAS)
13  add_subdirectory(bas)
14endif()
15
16if(CONFIG_BT_OTS OR CONFIG_BT_OTS_CLIENT)
17  add_subdirectory(ots)
18endif()
19
20if(CONFIG_BT_IAS OR CONFIG_BT_IAS_CLIENT)
21  add_subdirectory(ias)
22endif()
23
24if(CONFIG_BT_ZEPHYR_NUS)
25  add_subdirectory(nus)
26endif()
27