1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

MCOL-317 Fix out of tree builds

Make linking with libmysqlclient work with out of tree builds
This commit is contained in:
Andrew Hutchings
2017-01-25 21:32:11 +00:00
parent d50007b61d
commit 67121aab81
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ set(joblist_LIB_SRCS
add_library(joblist SHARED ${joblist_LIB_SRCS})
target_link_libraries(joblist ${NETSNMP_LIBRARIES} -L${SERVER_SOURCE_ROOT_DIR}/libmysql/ libmysqlclient_r.so)
target_link_libraries(joblist ${NETSNMP_LIBRARIES} -L${SERVER_BUILD_INCLUDE_DIR}/../libmysql/ libmysqlclient_r.so)
set_target_properties(joblist PROPERTIES VERSION 1.0.0 SOVERSION 1)