1# Copyright (c) 2022 Vaishnav Achath
2#
3# SPDX-License-Identifier: Apache-2.0
4
5zephyr_sources(soc.c)
6zephyr_sources(ccfg.c)
7
8zephyr_include_directories(.)
9
10zephyr_library_sources_ifdef(CONFIG_PM    power.c)
11zephyr_library_sources_ifdef(CONFIG_PM_DEVICE   power.c)
12
13zephyr_linker_sources_ifdef(CONFIG_HAS_TI_CCFG SECTIONS ccfg.ld)
14
15set(SOC_LINKER_SCRIPT ${ZEPHYR_BASE}/include/zephyr/arch/arm/cortex_m/scripts/linker.ld CACHE INTERNAL "")
16