You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-27 16:01:57 +03:00
16 lines
416 B
CMake
16 lines
416 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})
|
|
|
|
target_link_libraries(writeengineclient ${NETSNMP_LIBRARIES})
|
|
|
|
install(TARGETS writeengineclient DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|
|
|
|
|