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