From ee9163e90cd226c334bbce93996a0f7af6e49721 Mon Sep 17 00:00:00 2001 From: William Emfinger Date: Tue, 2 Jun 2026 08:53:58 -0500 Subject: [PATCH] fix(display): Remove unnecessary enum-enum conversion warning which can trigger compile errors --- components/display/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/display/CMakeLists.txt b/components/display/CMakeLists.txt index 31a343098..a6d198645 100644 --- a/components/display/CMakeLists.txt +++ b/components/display/CMakeLists.txt @@ -1,7 +1,5 @@ idf_component_register( INCLUDE_DIRS "include" REQUIRES driver led lvgl base_component task) -# lvgl generates deprecated enum-enum conversion warnings, suppress them -target_compile_options(${COMPONENT_LIB} INTERFACE "-Wno-deprecated-enum-enum-conversion") add_definitions(-DLV_CONF_INCLUDE_SIMPLE) include_directories(include)