1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00
Files
mariadb-columnstore-engine/dbcon/dmlpackageproc/CMakeLists.txt

25 lines
584 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)
add_library(dmlpackageproc SHARED ${dmlpackageproc_LIB_SRCS})
add_dependencies(dmlpackageproc loggingcpp)
target_link_libraries(dmlpackageproc ${NETSNMP_LIBRARIES})
install(TARGETS dmlpackageproc DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)