
The soname version numbers were missing from all the library targets properties which caused ldconfig to warn about non-symlink libraries being installed.
5 lines
306 B
CMake
5 lines
306 B
CMake
add_library(maxinfo SHARED maxinfo.c maxinfo_parse.c maxinfo_error.c maxinfo_exec.c)
|
|
set_target_properties(maxinfo PROPERTIES INSTALL_RPATH ${CMAKE_INSTALL_RPATH}:${MAXSCALE_LIBDIR} VERSION "1.0.0")
|
|
target_link_libraries(maxinfo pthread log_manager)
|
|
install(TARGETS maxinfo DESTINATION ${MAXSCALE_LIBDIR})
|