1# SPDX-License-Identifier: Apache-2.0
2
3cmake_minimum_required(VERSION 3.20.0)
4find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
5project(common_kernel_footprint)
6
7FILE(GLOB app_sources src/[^up]*.c)
8target_sources(app PRIVATE ${app_sources})
9target_sources_ifdef(CONFIG_USERSPACE app PRIVATE src/userspace.c)
10target_sources_ifdef(CONFIG_PM_DEVICE app PRIVATE src/pm_device.c)
11
12target_include_directories(app PRIVATE
13  ${ZEPHYR_BASE}/kernel/include
14  ${ZEPHYR_BASE}/arch/${ARCH}/include
15  )
16