Fixed telnetd soname

The telnetd was missing the VERSION target property which activates the
soname generation for CMake.
This commit is contained in:
Markus Makela 2015-11-30 10:42:07 +02:00
parent a829b38873
commit 3cd648fa09

View File

@ -10,7 +10,7 @@ install(TARGETS MySQLBackend DESTINATION ${MAXSCALE_LIBDIR})
add_library(telnetd SHARED telnetd.c)
target_link_libraries(telnetd log_manager)
set_target_properties(MySQLBackend PROPERTIES VERSION "2.0.0")
set_target_properties(telnetd PROPERTIES VERSION "1.0.1")
install(TARGETS telnetd DESTINATION ${MAXSCALE_LIBDIR})
add_library(HTTPD SHARED httpd.c)