1# SPDX-License-Identifier: Apache-2.0
2# Copyright (c) 2019 Oticon A/S
3
4cmake_minimum_required(VERSION 3.20.0)
5
6find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
7project(hci_test_app)
8
9target_sources(app PRIVATE
10	src/main.c
11	../common/edtt_driver_bsim.c
12)
13
14zephyr_library_include_directories(
15  ${ZEPHYR_BASE}/samples/bluetooth
16  ${ZEPHYR_BASE}/subsys/bluetooth
17  ../common/
18  ${BSIM_COMPONENTS_PATH}/libUtilv1/src/
19  ${BSIM_COMPONENTS_PATH}/libPhyComv1/src/
20)
21