1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4
5zephyr_library_sources(input.c)
6zephyr_library_sources(input_hid.c)
7zephyr_library_sources(input_utils.c)
8
9zephyr_library_sources_ifdef(CONFIG_INPUT_KEYMAP input_keymap.c)
10zephyr_library_sources_ifdef(CONFIG_INPUT_LONGPRESS input_longpress.c)
11zephyr_library_sources_ifdef(CONFIG_INPUT_DOUBLE_TAP input_double_tap.c)
12