1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +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}) 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) set_target_properties(calmysql PROPERTIES VERSION 1.0.0 SOVERSION 1)
install(TARGETS calmysql DESTINATION ${ENGINE_LIBDIR}) install(TARGETS calmysql DESTINATION ${ENGINE_LIBDIR})

View File

@@ -1,3 +1,3 @@
install(FILES functions test-001.sh test-002.sh test-003.sh test-004.sh DESTINATION ${ENGINE_POSTDIR}) install(PROGRAMS functions test-001.sh test-002.sh test-003.sh test-004.sh DESTINATION ${ENGINE_POSTDIR})