From fbea833561c8e93c2eea696c4cc0f1158507dbd2 Mon Sep 17 00:00:00 2001 From: LiuTao <519784120@qq.com> Date: Thu, 25 May 2023 17:44:50 +0800 Subject: [PATCH] install static library to install directory --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 3bc04ae..dc58cbb 100644 --- a/Makefile +++ b/Makefile @@ -128,6 +128,7 @@ install-cjson: mkdir -p $(INSTALL_LIBRARY_PATH) $(INSTALL_INCLUDE_PATH) $(INSTALL) cJSON.h $(INSTALL_INCLUDE_PATH) $(INSTALL) $(CJSON_SHARED) $(CJSON_SHARED_SO) $(CJSON_SHARED_VERSION) $(INSTALL_LIBRARY_PATH) + $(INSTALL) $(CJSON_STATIC) $(INSTALL_LIBRARY_PATH) #cJSON_Utils install-utils: install-cjson $(INSTALL) cJSON_Utils.h $(INSTALL_INCLUDE_PATH)