X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fmdnsd.git;a=blobdiff_plain;f=CMakeLists.txt;h=a52e5bd015beebfb871a789514a82d1cdddec547;hp=4052bcdb80ad30576e2285937cc465e43d458406;hb=95d8e0d4f03dd7c1211d3f98dc31074365717acf;hpb=578616a31cd9ba01017f399f5d9a50481019889e diff --git a/CMakeLists.txt b/CMakeLists.txt index 4052bcd..a52e5bd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 2.6) -PROJECT(mdns C) +PROJECT(umdns C) ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations) SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") @@ -13,10 +13,10 @@ IF(DEBUG) ADD_DEFINITIONS(-DDEBUG -g3) ENDIF() -ADD_EXECUTABLE(mdns ${SOURCES}) +ADD_EXECUTABLE(umdns ${SOURCES}) -TARGET_LINK_LIBRARIES(mdns ${LIBS}) +TARGET_LINK_LIBRARIES(umdns ${LIBS}) -INSTALL(TARGETS mdns +INSTALL(TARGETS umdns RUNTIME DESTINATION sbin )