zephyr/tests/bsim/babblekit/CMakeLists.txt
Jonathan Rico 389192a94d tests: Bluetooth: Add common helpers for bsim
This code can be found (kinda) duplicated all over
`tests/bsim/bluetooth`.

Put it in a common place.

Refactoring the current tests will be done in a future commit.

Signed-off-by: Jonathan Rico <jonathan.rico@nordicsemi.no>
2024-04-10 07:43:41 -04:00

20 lines
389 B
CMake

# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
# Helpers that can be used on bsim targets but don't have other
# dependencies (e.g. on Bluetooth, etc).
add_library(babblekit)
target_link_libraries(babblekit PUBLIC
kernel
zephyr_interface
)
target_include_directories(babblekit PUBLIC
include
)
target_sources(babblekit PRIVATE
src/sync.c
)