Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9e8f093..2729150 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,7 +26,18 @@ find_library(json json)
IF(EXISTS ${json})
ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c)
TARGET_LINK_LIBRARIES(blobmsg_json ubox json)
- INSTALL(TARGETS blobmsg_json
+
+ ADD_EXECUTABLE(jshn jshn.c)
+ TARGET_LINK_LIBRARIES(jshn json)
+
+ INSTALL(TARGETS blobmsg_json jshn
LIBRARY DESTINATION lib
+ RUNTIME DESTINATION bin
)
+
+ FILE(GLOB scripts sh/*.sh)
+ INSTALL(FILES ${scripts}
+ DESTINATION share/libubox
+ )
+
ENDIF()