2022-07-06 22:27:37 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-12-07 22:01:12 +08:00
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
2022-07-06 22:27:37 +08:00
|
|
|
|
|
|
|
project(bluetooth_ull_llcp_cis_create)
|
2022-12-07 22:01:12 +08:00
|
|
|
find_package(Zephyr COMPONENTS unittest HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
|
|
|
|
add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/controller/common common)
|
|
|
|
add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/controller/uut uut)
|
|
|
|
|
|
|
|
target_link_libraries(testbinary PRIVATE uut common)
|
|
|
|
|
2022-10-18 12:15:21 +08:00
|
|
|
target_sources(testbinary
|
2022-12-07 22:01:12 +08:00
|
|
|
PRIVATE
|
|
|
|
src/main.c
|
2022-10-18 12:15:21 +08:00
|
|
|
)
|