We were testing all the slist APIs, but not the sflist variant. Make a copy of the slist tests for sflist, with the names properly changed. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
32 lines
550 B
CMake
32 lines
550 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
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/byteorder.c
|
|
src/clock.c
|
|
src/dlist.c
|
|
src/intmath.c
|
|
src/main.c
|
|
src/slist.c
|
|
src/sflist.c
|
|
src/timeout_order.c
|
|
src/multilib.c
|
|
src/errno.c
|
|
src/boot_delay.c
|
|
src/irq_offload.c
|
|
)
|