1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-13 19:22:58 +00:00

Install libtcp-portmon.

This commit is contained in:
Daniel Pielmeier 2019-03-09 11:19:53 +01:00 committed by Brenden Matthews
parent 58d310808d
commit dbdc78fe5a

View File

@ -297,10 +297,16 @@ else()
target_link_libraries(conky ${conky_libs})
endif()
# Install libtcp-portmon too?
install(TARGETS conky
RUNTIME DESTINATION bin
LIBRARY DESTINATION ${LIB_INSTALL_DIR}/conky
ARCHIVE DESTINATION ${LIB_INSTALL_DIR}/conky)
if(BUILD_PORT_MONITORS)
install(TARGETS tcp-portmon
RUNTIME DESTINATION bin
LIBRARY DESTINATION ${LIB_INSTALL_DIR}/conky
ARCHIVE DESTINATION ${LIB_INSTALL_DIR}/conky)
endif(BUILD_PORT_MONITORS)
print_target_properties(conky)