2022-05-11 03:24:06 -07:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
|
2023-03-01 12:56:02 +00:00
|
|
|
find_package(Zephyr COMPONENTS unittest REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2022-12-07 15:01:12 +01:00
|
|
|
|
2024-08-01 11:45:44 +02:00
|
|
|
project(bluetooth_ull_llcp_collision)
|
|
|
|
|
2022-12-07 15:01:12 +01:00
|
|
|
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-05-11 03:24:06 -07:00
|
|
|
|
2022-10-17 22:15:21 -06:00
|
|
|
target_sources(testbinary
|
|
|
|
PRIVATE
|
|
|
|
src/main.c
|
|
|
|
)
|