1# SPDX-License-Identifier: Apache-2.0 2 3cmake_minimum_required(VERSION 3.20.0) 4 5find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) 6project(bsim_test_ead_sample) 7 8target_sources(app PRIVATE 9 src/main.c 10 ${ZEPHYR_BASE}/samples/bluetooth/encrypted_advertising/central/src/central_ead.c 11 ${ZEPHYR_BASE}/samples/bluetooth/encrypted_advertising/peripheral/src/peripheral_ead.c 12) 13 14zephyr_include_directories( 15 ${BSIM_COMPONENTS_PATH}/libUtilv1/src/ 16 ${BSIM_COMPONENTS_PATH}/libPhyComv1/src/ 17 18 ${ZEPHYR_BASE}/samples/bluetooth/encrypted_advertising/peripheral/src/ 19 ${ZEPHYR_BASE}/samples/bluetooth/encrypted_advertising/include/ 20) 21