minor cleanup in the library definitions

Signed-off-by: John Crispin <[email protected]>
This commit is contained in:
John Crispin
2020-06-23 08:05:19 +02:00
parent d94c726a58
commit d93583f7c8
+2 -2
View File
@@ -4,10 +4,10 @@ PROJECT(udevmand C)
INCLUDE(GNUInstallDirs) INCLUDE(GNUInstallDirs)
ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations) ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations)
SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") SET(LIBS ubox ubus json-c blobmsg_json uci nl-tiny)
ADD_EXECUTABLE(udevmand main.c mac.c neigh.c ubus.c nl80211.c blob.c netlink.c bridge.c dhcp.c netifd.c ethers.c netdev.c) ADD_EXECUTABLE(udevmand main.c mac.c neigh.c ubus.c nl80211.c blob.c netlink.c bridge.c dhcp.c netifd.c ethers.c netdev.c)
TARGET_LINK_LIBRARIES(udevmand ubox ubus json-c blobmsg_json nl-tiny uci) TARGET_LINK_LIBRARIES(udevmand ${LIBS})
INSTALL(TARGETS udevmand INSTALL(TARGETS udevmand
RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR} RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR}
) )