You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-02 17:22:27 +03:00
23 lines
652 B
CMake
23 lines
652 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
########### next target ###############
|
|
|
|
set(writeengineredistribute_LIB_SRCS
|
|
we_redistribute.cpp
|
|
we_redistributecontrol.cpp
|
|
we_redistributecontrolthread.cpp
|
|
we_redistributeworkerthread.cpp)
|
|
|
|
add_library(writeengineredistribute SHARED ${writeengineredistribute_LIB_SRCS})
|
|
|
|
add_dependencies(writeengineredistribute loggingcpp)
|
|
|
|
target_link_libraries(writeengineredistribute ${NETSNMP_LIBRARIES})
|
|
|
|
target_compile_definitions(writeengineredistribute PUBLIC BOOST_NO_CXX11_SCOPED_ENUMS)
|
|
|
|
|
|
install(TARGETS writeengineredistribute DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|
|
|