1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

CMake fixes for executable install and libclamysql

This commit is contained in:
Ben Thompson
2016-07-15 16:23:26 -05:00
parent ba2a66f589
commit 72ac8c5e90
2 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,8 @@ add_definitions(-DMYSQL_DYNAMIC_PLUGIN)
add_library(calmysql SHARED ${libcalmysql_SRCS})
target_link_libraries(calmysql ${ENGINE_LDFLAGS} ${ENGINE_WRITE_LIBS} threadpool)
set_target_properties(calmysql PROPERTIES VERSION 1.0.0 SOVERSION 1)
install(TARGETS calmysql DESTINATION ${ENGINE_LIBDIR})