1# SPDX-License-Identifier: Apache-2.0 2 3cmake_minimum_required(VERSION 3.20.0) 4 5set(EXTRA_CONF_FILE 6 ../../../samples/bluetooth/hci_uart_async/prj.conf 7) 8 9find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) 10 11project(test_samples_bluetooth_hci_uart_async) 12target_sources(app PRIVATE 13 ../../../samples/bluetooth/hci_uart_async/src/hci_uart_async.c 14 src/test_hci_uart_async.c 15) 16