From d62d20921b9ac901c7138cc81208263db307c9ad Mon Sep 17 00:00:00 2001 From: zhangyouyou Date: Tue, 30 Aug 2022 08:56:43 +0800 Subject: [PATCH] https://gitee.com/openharmony/commonlibrary_ets_utils/issues/I5O39Y Signed-off-by: zhangyouyou --- base/BUILD.gn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/base/BUILD.gn b/base/BUILD.gn index 75383b1..9237241 100644 --- a/base/BUILD.gn +++ b/base/BUILD.gn @@ -37,6 +37,10 @@ config("static_utils_config") { ] } +config("utils_all_dependent_configs") { + include_dirs = [ "include" ] +} + sources_utils = [ "src/string_ex.cpp", "src/unicode_ex.cpp", @@ -123,6 +127,7 @@ ohos_shared_library("utils") { ":utils_config", ":private_securec_config", ] + all_dependent_configs = [ ":utils_all_dependent_configs" ] public_configs = [ ":static_utils_config" ] defines = [ "CONFIG_HILOG" ] external_deps = [ "hilog_native:libhilog_base" ] -- Gitee