1# SPDX-License-Identifier: Apache-2.0 2 3cmake_minimum_required(VERSION 3.20.0) 4 5find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) 6project(app) 7 8add_subdirectory(${ZEPHYR_BASE}/tests/bluetooth/common/testlib testlib) 9 10target_sources(app PRIVATE 11 ../long_read/bs_main.c 12 ../long_read/bs_sync.c 13 main.c 14) 15 16zephyr_include_directories( 17 ${BSIM_COMPONENTS_PATH}/libPhyComv1/src/ 18 ${BSIM_COMPONENTS_PATH}/libUtilv1/src/ 19 ../long_read/ 20) 21 22target_link_libraries(app PRIVATE 23 testlib 24) 25