1#
2# Copyright (c) 2022 Nordic Semiconductor ASA
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6# CMakeLists.txt file for creating of common library.
7#
8
9add_library(common STATIC
10  src/helper_pdu.c
11  src/helper_util.c
12)
13
14target_include_directories(common PUBLIC
15  include
16  ${ZEPHYR_BASE}/subsys/bluetooth/controller/include
17  ${ZEPHYR_BASE}/subsys/bluetooth/controller
18  ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw
19  ${ZEPHYR_BASE}/subsys/bluetooth/controller/ll_sw/nordic
20)
21
22target_link_libraries(common PRIVATE test_interface)
23