Merge Kconfig file for OTS server and client. Rename the client config from _OTC to _OTS_CLIENT Signed-off-by: Asbjørn Sæbø <asbjorn.sabo@nordicsemi.no>
15 lines
286 B
CMake
15 lines
286 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
zephyr_sources_ifdef(CONFIG_BT_DIS dis.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_BT_BAS bas.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_BT_HRS hrs.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_BT_TPS tps.c)
|
|
|
|
if(CONFIG_BT_OTS OR CONFIG_BT_OTS_CLIENT)
|
|
add_subdirectory(ots)
|
|
endif()
|