From 79b55bed8f45a81763567f5de29e066c455dbf4b Mon Sep 17 00:00:00 2001 From: zhongluping <278527840@qq.com> Date: Thu, 15 Jun 2023 15:24:37 +0800 Subject: [PATCH] =?UTF-8?q?minizip=20=E6=B7=BB=E5=8A=A0=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=E5=BA=93=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhongluping <278527840@qq.com> --- thirdparty/minizip-ng/docs/hap_integrate.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/thirdparty/minizip-ng/docs/hap_integrate.md b/thirdparty/minizip-ng/docs/hap_integrate.md index bd19443c..ce326c7a 100755 --- a/thirdparty/minizip-ng/docs/hap_integrate.md +++ b/thirdparty/minizip-ng/docs/hap_integrate.md @@ -40,13 +40,25 @@ cp thirdparty/minizip-ng tools/main -rf ``` +- 将minizip-ng的依赖库拷贝至tools/main目录下 + + minizip-ng依赖了openssl,xz,bzip2,zstd以及googletest等三方库,其中googletest是minizip-ng的测试用例所依赖的库 + + ```shell + cp thirdparty/openssl tools/main -rf + cp thirdparty/xz tools/main -rf + cp thirdparty/bzip2 tools/main -rf + cp thirdparty/zstd tools/main -rf + cp thirdparty/googletest tools/main -rf + ``` + - 在tools目录下编译三方库 编译环境的搭建参考[准备三方库构建环境](../../../tools/README.md#编译环境准备) ```shell cd tools - ./build.sh minizip-ng + ./build.sh minizip-ng googletest xz zstd bzip2 openssl ``` - 三方库头文件及生成的库 -- Gitee