2023-01-31 16:58:22 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_property(ALLOW_EMPTY TRUE)
|
|
|
|
|
2023-03-22 19:37:23 +01:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_INPUT_FT5336 input_ft5336.c)
|
2023-01-31 16:58:22 +01:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_INPUT_GPIO_KEYS input_gpio_keys.c)
|
2021-05-02 00:11:14 +02:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_INPUT_GPIO_QDEC input_gpio_qdec.c)
|
2023-05-11 16:29:40 +02:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_INPUT_NPCX_KBD input_npcx_kbd.c)
|
2023-06-22 20:45:01 +02:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_INPUT_XPT2046 input_xpt2046.c)
|
2023-07-05 10:00:26 +02:00
|
|
|
|
|
|
|
if (CONFIG_INPUT_SDL_TOUCH)
|
|
|
|
zephyr_library_sources(input_sdl_touch.c)
|
|
|
|
if (CONFIG_NATIVE_APPLICATION)
|
|
|
|
zephyr_library_sources(input_sdl_touch_bottom.c)
|
|
|
|
else()
|
|
|
|
target_sources(native_simulator INTERFACE input_sdl_touch_bottom.c)
|
|
|
|
endif()
|
|
|
|
endif()
|