From a9606be4c085984e00da7b851e5aa18a9aff3229 Mon Sep 17 00:00:00 2001 From: shilong Date: Thu, 1 Feb 2024 03:07:07 +0000 Subject: [PATCH 1/2] Change: Declare cjson as inner_kits Signed-off-by: shilong --- bundle.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bundle.json b/bundle.json index 77a537e..1e50d53 100644 --- a/bundle.json +++ b/bundle.json @@ -23,7 +23,15 @@ }, "build": { "sub_component": [], - "inner_kits": [], + "inner_kits": [ + "name": "//third_party/cJSON:cjson", + "header": { + "header_files": [ + "cJSON.h" + ], + "header_base": "//third_party/cJSON" + } + ], "test": [] } } -- Gitee From 736a293e28a781ae5e6579dbc42ef52cf4d62f78 Mon Sep 17 00:00:00 2001 From: shilong Date: Thu, 1 Feb 2024 03:23:32 +0000 Subject: [PATCH 2/2] Change: Declare cjson as inner_kits Signed-off-by: shilong --- bundle.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundle.json b/bundle.json index 1e50d53..18bb5db 100644 --- a/bundle.json +++ b/bundle.json @@ -24,13 +24,15 @@ "build": { "sub_component": [], "inner_kits": [ - "name": "//third_party/cJSON:cjson", + { + "name": "//third_party/cJSON:cjson", "header": { "header_files": [ "cJSON.h" ], "header_base": "//third_party/cJSON" } + } ], "test": [] } -- Gitee