913c662062
This changes to compile the IRQ offload test only if CONFIG_IRQ_OFFLOAD=y. For architectures that do not support IRQ offload (or that developers with to disable IRQ offload during bring-up), compiling the code would result in linking errors. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
35 lines
561 B
CMake
35 lines
561 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(kernel_common)
|
|
|
|
if(NOT CONFIG_ARM)
|
|
target_sources(app PRIVATE
|
|
src/bitfield.c
|
|
)
|
|
endif()
|
|
if(CONFIG_PRINTK)
|
|
target_sources(app PRIVATE
|
|
src/printk.c
|
|
)
|
|
endif()
|
|
target_sources(app PRIVATE
|
|
src/atomic.c
|
|
src/bitarray.c
|
|
src/byteorder.c
|
|
src/clock.c
|
|
src/main.c
|
|
src/timeout_order.c
|
|
src/multilib.c
|
|
src/errno.c
|
|
src/boot_delay.c
|
|
src/pow2.c
|
|
)
|
|
|
|
target_sources_ifdef(
|
|
CONFIG_IRQ_OFFLOAD
|
|
app PRIVATE
|
|
src/irq_offload.c
|
|
)
|