From 96478a0c3e25708797a635e0cdcd260195ac75cb Mon Sep 17 00:00:00 2001 From: C47D Date: Fri, 2 Oct 2020 22:35:38 -0500 Subject: [PATCH] lv_conf_internal: Check for LV_CONF_INCLUDE_SIMPLE before defining it. --- src/lv_conf_internal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lv_conf_internal.h b/src/lv_conf_internal.h index 064917cad..6bc8169ef 100644 --- a/src/lv_conf_internal.h +++ b/src/lv_conf_internal.h @@ -12,7 +12,9 @@ #if defined __has_include # if __has_include("lv_conf.h") +# ifndef LV_CONF_INCLUDE_SIMPLE # define LV_CONF_INCLUDE_SIMPLE +# endif # endif #endif