1# Copyright (c) 2022 Intel Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4if(CONFIG_RTIO)
5	zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/rtio/rtio.h)
6
7	zephyr_library()
8
9	zephyr_include_directories(${ZEPHYR_BASE}/subsys/rtio)
10
11	zephyr_library_sources(rtio_executor.c)
12	zephyr_library_sources(rtio_init.c)
13	zephyr_library_sources_ifdef(CONFIG_USERSPACE rtio_handlers.c)
14endif()
15