zephyr/tests/kernel/common/CMakeLists.txt
Anas Nashif 1caab558a1 tests: move intmath test to be unit tests
Move to a unit test, no need to build this for every platform we have.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2019-09-27 15:23:26 -04:00

28 lines
495 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/main.c
src/timeout_order.c
src/multilib.c
src/errno.c
src/boot_delay.c
src/irq_offload.c
)