2022-01-28 15:19:19 -08:00
|
|
|
# Intel ACE SoC family CMake file
|
|
|
|
#
|
|
|
|
# Copyright (c) 2022 Intel Corporation
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-07-01 11:36:13 -07:00
|
|
|
|
2022-01-28 15:19:19 -08:00
|
|
|
zephyr_library_sources(
|
2022-07-29 18:59:31 -04:00
|
|
|
sram.c
|
2022-06-21 18:36:24 -04:00
|
|
|
multiprocessing.c
|
|
|
|
irq.c
|
|
|
|
power_down.S
|
2022-07-29 21:45:52 -04:00
|
|
|
power.c
|
2022-11-22 12:59:10 +01:00
|
|
|
boot.c
|
2024-01-09 09:00:55 +01:00
|
|
|
timestamp.c
|
2022-06-21 18:36:24 -04:00
|
|
|
)
|
2022-08-17 13:59:56 +02:00
|
|
|
|
2023-10-30 11:18:51 +01:00
|
|
|
zephyr_include_directories(include)
|
|
|
|
zephyr_include_directories(include/${SOC_NAME})
|
2022-08-17 13:59:56 +02:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_SOC_INTEL_COMM_WIDGET comm_widget.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_SOC_INTEL_COMM_WIDGET comm_widget_messages.c)
|
2023-10-27 21:46:21 +02:00
|
|
|
|
|
|
|
set(SOC_LINKER_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/linker.ld CACHE INTERNAL "")
|