12 lines
395 B
CMake
12 lines
395 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2016-2017, Texas Instruments Incorporated
|
|
|
|
zephyr_sources(soc.c)
|
|
zephyr_include_directories(.)
|
|
|
|
if(DEFINED CONFIG_CC3220SF_DEBUG OR DEFINED CONFIG_CC3235SF_DEBUG)
|
|
zephyr_linker_sources(ROM_START SORT_KEY 0 cc32xx_debug.ld)
|
|
endif()
|
|
|
|
set(SOC_LINKER_SCRIPT ${ZEPHYR_BASE}/include/zephyr/arch/arm/cortex_m/scripts/linker.ld CACHE INTERNAL "")
|