CMakeLists.txt 907 B

123456789101112131415
  1. # SPDX-License-Identifier: Apache-2.0
  2. zephyr_library()
  3. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_ADCKEY adckey_acts.c)
  4. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_ONOFF_KEY onoff_key_acts.c)
  5. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_GPIOKEY gpiokey_acts.c)
  6. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_KEY_PAD mxkeypad_acts.c)
  7. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_QUAD_DECODER quad_decoder_acts.c)
  8. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_IR_CAPTURE capture_protocol.c)
  9. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_IR_CAPTURE capture_controller.c)
  10. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_IR_CAPTURE capture_data.c)
  11. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_SD8563_TIMER sd8563_timer_acts.c)
  12. zephyr_library_sources_ifdef(CONFIG_INPUT_DEV_ACTS_SGM832A sgm832a_acts.c)
  13. add_subdirectory_ifdef(CONFIG_INPUT_DEV_ACTS_TP_KEY tpkey)