1# SPDX-License-Identifier: Apache-2.0
2
3cmake_minimum_required(VERSION 3.20.0)
4
5project(bluetooth_ull_llcp_chmu)
6find_package(Zephyr COMPONENTS unittest REQUIRED HINTS $ENV{ZEPHYR_BASE})
7
8add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/controller/common common)
9add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/controller/uut uut)
10
11target_link_libraries(testbinary PRIVATE uut common)
12
13target_sources(testbinary
14  PRIVATE
15    src/main.c
16)
17