You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
23 lines
589 B
CMake
23 lines
589 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
########### next target ###############
|
|
|
|
set(ddlpackageproc_LIB_SRCS
|
|
ddlpackageprocessor.cpp
|
|
createtableprocessor.cpp
|
|
altertableprocessor.cpp
|
|
droptableprocessor.cpp
|
|
markpartitionprocessor.cpp
|
|
restorepartitionprocessor.cpp
|
|
droppartitionprocessor.cpp)
|
|
|
|
add_library(ddlpackageproc SHARED ${ddlpackageproc_LIB_SRCS})
|
|
|
|
add_dependencies(ddlpackageproc loggingcpp)
|
|
|
|
target_link_libraries(ddlpackageproc ${NETSNMP_LIBRARIES})
|
|
|
|
install(TARGETS ddlpackageproc DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|
|
|