2024-04-03 20:35:36 +08:00
|
|
|
# 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
|
2024-07-08 17:47:01 +08:00
|
|
|
src/device.c
|
2024-04-03 20:35:36 +08:00
|
|
|
)
|