1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00
Files
2025-05-20 18:22:59 +04:00

22 lines
685 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
)
columnstore_library(writeengineredistribute ${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
)