1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/fuel_gauge.h)
4
5add_subdirectory_ifdef(CONFIG_SBS_GAUGE_NEW_API		sbs_gauge)
6add_subdirectory_ifdef(CONFIG_MAX17048		max17048)
7add_subdirectory_ifdef(CONFIG_BQ27Z746		bq27z746)
8
9zephyr_library_sources_ifdef(CONFIG_USERSPACE fuel_gauge_syscall_handlers.c)
10
11if (CONFIG_EMUL AND CONFIG_USERSPACE)
12  zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/emul_fuel_gauge.h)
13  zephyr_library_sources(emul_fuel_gauge_syscall_handlers.c)
14endif()
15