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(bluetooth_ctrl_isoal)
7
8zephyr_library_include_directories(
9  ${ZEPHYR_BASE}/subsys/bluetooth
10  ${ZEPHYR_BASE}/subsys/bluetooth/controller
11  ${ZEPHYR_BASE}/subsys/bluetooth/controller/include
12  ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw
13  ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw/nordic
14  ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw/nordic/lll
15)
16
17FILE(GLOB app_sources src/*.c)
18
19target_sources(app PRIVATE ${app_sources})
20