blob: 83dba2f4978950bccdcf179045c7a03d0b3e4a01 [file] [log] [blame]
#
# Copyright (c) 2022 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#
# CMakeLists.txt file for creating of common library.
#
add_library(common STATIC
src/helper_pdu.c
src/helper_util.c
)
target_include_directories(common PUBLIC
include
${ZEPHYR_BASE}/subsys/bluetooth/controller/include
${ZEPHYR_BASE}/subsys/bluetooth/controller
${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw
${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw/nordic
)
target_link_libraries(common PRIVATE test_interface)