X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubox.git;a=blobdiff_plain;f=CMakeLists.txt;h=0a0c9ff44de291299673372626c0b0e56eec1552;hp=8cfbbc8b5af5df18655c501f35e50d7e43d499ca;hb=2b32e9059166a23204fcf01e65a9184b3c39166b;hpb=0ff5e8917bc3205d9887d5f714369a0072829edc diff --git a/CMakeLists.txt b/CMakeLists.txt index 8cfbbc8..0a0c9ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,6 @@ INSTALL(TARGETS mount_root ADD_EXECUTABLE(block block.c libblkid-tiny/libblkid-tiny.c - libblkid-tiny/md5.c libblkid-tiny/mkdev.c libblkid-tiny/ext.c libblkid-tiny/jffs2.c @@ -70,3 +69,15 @@ TARGET_LINK_LIBRARIES(validate_data ${LIBS} validate) INSTALL(TARGETS validate_data RUNTIME DESTINATION sbin ) + +ADD_EXECUTABLE(logd log/logd.c log/syslog.c) +TARGET_LINK_LIBRARIES(logd ${LIBS}) +INSTALL(TARGETS logd + RUNTIME DESTINATION sbin +) + +ADD_EXECUTABLE(logread log/logread.c) +TARGET_LINK_LIBRARIES(logread ${LIBS}) +INSTALL(TARGETS logread + RUNTIME DESTINATION sbin +)