From 57c6259026175e56550b616da607622303ff8462 Mon Sep 17 00:00:00 2001 From: samuel_yuan <“code@ossri.org.cn”> Date: Mon, 14 Feb 2022 17:20:01 +0800 Subject: [PATCH] update iniparser BUILD.gn for riscv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: samuel_yuan <“code@ossri.org.cn”> --- BUILD.gn | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index 325c3df..472ec50 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -1,6 +1,10 @@ # Copyright (C) 2019. Huawei Technologies Co., Ltd. All rights reserved. -import("//build/lite/config/component/lite_component.gni") +if (defined(ohos_lite)) { + import("//build/lite/config/component/lite_component.gni") +} else { + import("//build/ohos.gni") +} shared_library("iniparser") { sources = [ -- Gitee