1# Copyright (c) 2020 Intel Corporation 2# SPDX-License-Identifier: Apache-2.0 3 4add_definitions(-D__ZEPHYR_SUPERVISOR__) 5 6include_directories( 7 ${ZEPHYR_BASE}/kernel/include 8 ${ARCH_DIR}/${ARCH}/include 9 ) 10 11if(NOT DEFINED CONFIG_EVICTION_CUSTOM) 12 zephyr_library() 13 zephyr_library_sources_ifdef(CONFIG_EVICTION_NRU nru.c) 14endif() 15