From de08a2c71ca83e783ab6cfc2bb6dda07b25bf381 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Tue, 13 Oct 2020 14:23:46 +0200 Subject: [PATCH] cmake: create static library MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit So it could be reused in other binaries for fuzzing etc. Signed-off-by: Petr Å tetiar --- CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8be878d..e087203 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations) SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") -SET(SOURCES main.c dns.c announce.c cache.c service.c util.c ubus.c interface.c) +SET(SOURCES dns.c announce.c cache.c service.c util.c ubus.c interface.c) FIND_PATH(ubox_include_dir NAMES libubox/usock.h) FIND_PATH(ubus_include_dir NAMES libubus.h) @@ -22,9 +22,11 @@ IF(DEBUG) ADD_DEFINITIONS(-DDEBUG -g3) ENDIF() -ADD_EXECUTABLE(umdns ${SOURCES}) +ADD_LIBRARY(umdns-lib STATIC ${SOURCES}) +TARGET_LINK_LIBRARIES(umdns-lib ${LIBS}) -TARGET_LINK_LIBRARIES(umdns ${LIBS}) +ADD_EXECUTABLE(umdns main.c) +TARGET_LINK_LIBRARIES(umdns umdns-lib) INSTALL(TARGETS umdns RUNTIME DESTINATION sbin -- 2.30.2