1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4zephyr_library_include_directories(include)
5
6zephyr_library_sources(
7	sensor_mgmt.c
8	dispatch.c
9	sensing.c
10	sensing_sensor.c
11)
12
13add_subdirectory_ifdef(CONFIG_SENSING_SENSOR_PHY_3D_SENSOR sensor/phy_3d_sensor)
14add_subdirectory_ifdef(CONFIG_SENSING_SENSOR_HINGE_ANGLE sensor/hinge_angle)
15