[OpenWrt-Devel] [PATCH 1/4] Build static version of libblobmsg_json
Bachtin, Dmitri
dbachtin at init-ka.de
Wed Sep 9 03:23:57 EDT 2015
Signed-off-by: Dmitri Bachtin <dbachtin at init-ka.de>
---
CMakeLists.txt | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ecca3e9..65819c3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -47,13 +47,18 @@ IF(EXISTS ${json})
ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c)
TARGET_LINK_LIBRARIES(blobmsg_json ubox ${json})
+ ADD_LIBRARY(blobmsg_json-static STATIC blobmsg_json.c)
+ SET_TARGET_PROPERTIES( blobmsg_json-static
+ PROPERTIES OUTPUT_NAME blobmsg_json)
+
ADD_EXECUTABLE(jshn jshn.c)
TARGET_LINK_LIBRARIES(jshn blobmsg_json ${json})
ADD_LIBRARY(json_script SHARED json_script.c)
TARGET_LINK_LIBRARIES(json_script ubox)
- INSTALL(TARGETS blobmsg_json jshn json_script
+ INSTALL(TARGETS blobmsg_json blobmsg_json-static jshn json_script
+ ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin
)
--
1.7.2.5
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list