1# SPDX-License-Identifier: Apache-2.0
2
3cmake_minimum_required(VERSION 3.20.0)
4
5find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
6project(central_hr_peripheral_hr_test)
7
8set(central_hr_path ${ZEPHYR_BASE}/samples/bluetooth/central_hr)
9
10target_sources(app PRIVATE
11  ${central_hr_path}/src/main.c
12)
13
14target_sources(app PRIVATE
15	src/sample_test.c
16	src/test_main.c
17)
18
19zephyr_library_include_directories(${ZEPHYR_BASE}/samples/bluetooth)
20
21zephyr_include_directories(
22  ${BSIM_COMPONENTS_PATH}/libUtilv1/src/
23  ${BSIM_COMPONENTS_PATH}/libPhyComv1/src/
24  )
25