You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
26 lines
595 B
CMake
26 lines
595 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(dmlpackageproc_LIB_SRCS
|
|
deletepackageprocessor.cpp
|
|
dmlpackageprocessor.cpp
|
|
insertpackageprocessor.cpp
|
|
updatepackageprocessor.cpp
|
|
commandpackageprocessor.cpp
|
|
autoincrementdata.cpp
|
|
tablelockdata.cpp
|
|
)
|
|
|
|
columnstore_library(dmlpackageproc ${dmlpackageproc_LIB_SRCS})
|
|
|
|
add_dependencies(dmlpackageproc loggingcpp)
|
|
|
|
target_link_libraries(dmlpackageproc ${NETSNMP_LIBRARIES})
|
|
|
|
install(
|
|
TARGETS dmlpackageproc
|
|
DESTINATION ${ENGINE_LIBDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|