1# SPDX-License-Identifier: Apache-2.0 2 3cmake_minimum_required(VERSION 3.20.0) 4 5find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) 6project(bsim_test_disable) 7 8FILE(GLOB app_sources src/*.c) 9target_sources(app PRIVATE ${app_sources} ) 10 11zephyr_include_directories( 12 ${BSIM_COMPONENTS_PATH}/libUtilv1/src/ 13 ${BSIM_COMPONENTS_PATH}/libPhyComv1/src/ 14 ) 15 16add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/common/testlib testlib) 17target_link_libraries(app PRIVATE 18 testlib 19) 20