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
18 lines
412 B
CMake
18 lines
412 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(ddlcleanuputil_LIB_SRCS ddlcleanuputil.cpp)
|
|
|
|
columnstore_library(ddlcleanuputil ${ddlcleanuputil_LIB_SRCS})
|
|
|
|
add_dependencies(ddlcleanuputil loggingcpp)
|
|
|
|
target_link_libraries(ddlcleanuputil ${NETSNMP_LIBRARIES})
|
|
|
|
install(
|
|
TARGETS ddlcleanuputil
|
|
DESTINATION ${ENGINE_LIBDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|