From ed82063af5f83530afa5cfb5bf5bd516f3d05f2a Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 10 Apr 2024 16:56:10 +1000 Subject: WIP decompose our giant LVGL driver into smaller classes --- src/input/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/input/CMakeLists.txt (limited to 'src/input/CMakeLists.txt') diff --git a/src/input/CMakeLists.txt b/src/input/CMakeLists.txt new file mode 100644 index 00000000..92ed3d6c --- /dev/null +++ b/src/input/CMakeLists.txt @@ -0,0 +1,11 @@ +# Copyright 2023 jacqueline +# +# SPDX-License-Identifier: GPL-3.0-only + +idf_component_register( + SRCS "input_touch_wheel.cpp" "input_touch_dpad.cpp" + "input_volume_buttons.cpp" "lvgl_input_driver.cpp" "feedback_haptics.cpp" + INCLUDE_DIRS "include" + REQUIRES "drivers" "lvgl" "events" "system_fsm") + +target_compile_options(${COMPONENT_LIB} PRIVATE ${EXTRA_WARNINGS}) -- cgit v1.2.3