zephyr/tests/kernel/common/CMakeLists.txt
Anas Nashif 5060ca6a30 cmake: increase minimal required version to 3.13.1
Move to latest cmake version with many bug fixes and enhancements.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2019-01-03 11:51:29 -05:00

26 lines
444 B
CMake

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/timeout_order.c
src/multilib.c
)