zephyr/drivers/i3c/CMakeLists.txt
Armando Visconti 0d9654670f drivers: i3c: add dummy driver for vnd,i3c
It is just used to be able to DEVICE_DT_GET() bus devices from
tests/drivers/build_all in an upcoming commit.

Signed-off-by: Armando Visconti <armando.visconti@st.com>
2023-11-13 16:08:46 +00:00

38 lines
561 B
CMake

# Copyright (c) 2022 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/i3c.h)
zephyr_library()
zephyr_library_sources(
i3c_ccc.c
i3c_common.c
)
zephyr_library_sources_ifdef(
CONFIG_USERSPACE
i3c_handlers.c
)
zephyr_library_sources_ifdef(
CONFIG_I3C_IBI_WORKQUEUE
i3c_ibi_workq.c
)
zephyr_library_sources_ifdef(
CONFIG_I3C_MCUX
i3c_mcux.c
)
zephyr_library_sources_ifdef(
CONFIG_I3C_CADENCE
i3c_cdns.c
)
zephyr_library_sources_ifdef(
CONFIG_I3C_TEST
i3c_test.c
)