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:
authorJo-Philipp Wich <jow@openwrt.org>2015-02-25 22:42:03 +0300
committerJo-Philipp Wich <jow@openwrt.org>2015-02-26 12:43:56 +0300
commitca6d5472056ceee4b8ab320167e0ae8155a95985 (patch)
treec03607ff592c76a051abfad6d65f6c1093c9ae57 /CMakeLists.txt
parent827ad8337e88ec9e0bf73a8af1d6cf8555e8ef3d (diff)
ulog: introduce new simple logging api
The ulog api is intended to be used by procd, fstools, ubox etc. to provide a generic logging api for early boot messages and automatic switching between syslog / kmsg / stdout depending on the way the process is executed. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ddd5533..58381da 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ IF(JSONC_FOUND)
INCLUDE_DIRECTORIES(${JSONC_INCLUDE_DIRS})
ENDIF()
-SET(SOURCES avl.c avl-cmp.c blob.c blobmsg.c uloop.c usock.c ustream.c ustream-fd.c vlist.c utils.c safe_list.c runqueue.c md5.c kvlist.c)
+SET(SOURCES avl.c avl-cmp.c blob.c blobmsg.c uloop.c usock.c ustream.c ustream-fd.c vlist.c utils.c safe_list.c runqueue.c md5.c kvlist.c ulog.c)
ADD_LIBRARY(ubox SHARED ${SOURCES})
ADD_LIBRARY(ubox-static STATIC ${SOURCES})