1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-02 06:13:16 +03:00
Files
mariadb-columnstore-engine/writeengine/client/CMakeLists.txt
2016-07-15 10:49:57 -05:00

16 lines
403 B
CMake

include_directories( ${ENGINE_COMMON_INCLUDES} )
########### next target ###############
set(writeengineclient_LIB_SRCS we_clients.cpp we_ddlcommandclient.cpp we_dmlcommandclient.cpp)
add_library(writeengineclient SHARED ${writeengineclient_LIB_SRCS})
set_target_properties(writeengineclient PROPERTIES VERSION 1.0.0 SOVERSION 1)
install(TARGETS writeengineclient DESTINATION ${ENGINE_LIBDIR})