1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_include_directories(${ZEPHYR_BASE}/drivers)
4zephyr_sources(
5  soc.c
6  )
7
8zephyr_sources_ifdef(CONFIG_PM
9  power.c
10  )
11
12if(CONFIG_BT_STM32WBA)
13  zephyr_include_directories(hci_if)
14
15  zephyr_sources(hci_if/linklayer_plat_adapt.c)
16  zephyr_sources(hci_if/bleplat.c)
17  zephyr_sources(hci_if/host_stack_if.c)
18  zephyr_sources(hci_if/ll_sys_if_adapt.c)
19  zephyr_sources(hci_if/stm32_timer.c)
20endif()
21
22zephyr_include_directories(.)
23
24set(SOC_LINKER_SCRIPT ${ZEPHYR_BASE}/include/zephyr/arch/arm/cortex_m/scripts/linker.ld CACHE INTERNAL "")
25