1#
2# Copyright (c) 2021 Nordic Semiconductor ASA
3#
4# SPDX-License-Identifier: Apache-2.0
5
6cmake_minimum_required(VERSION 3.20.0)
7find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
8project(bluetooth_df_connectionless_cte_tx)
9
10FILE(GLOB app_sources src/*.c)
11SET(common_sources ${CMAKE_CURRENT_SOURCE_DIR}/../common/src/radio_df_stub.c)
12
13target_sources(app PRIVATE ${common_sources} ${app_sources})
14
15# Include paths to allow access to functions implemented in Bluetooth LE controller
16target_include_directories(app PRIVATE
17			   ${CMAKE_CURRENT_SOURCE_DIR}/../common/include)
18target_include_directories(app PRIVATE
19			   ${ZEPHYR_BASE}/subsys/bluetooth/controller)
20target_include_directories(app PRIVATE
21			   ${ZEPHYR_BASE}/subsys/bluetooth/controller/include)
22target_include_directories(app PRIVATE
23			   ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw)
24target_include_directories(app PRIVATE
25			   ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw/nordic)
26target_include_directories(app PRIVATE
27			   ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw/nordic/lll)
28