You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
16 lines
384 B
CMake
16 lines
384 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(ddlcleanup_SRCS ddlcleanup.cpp)
|
|
|
|
add_executable(ddlcleanup ${ddlcleanup_SRCS})
|
|
|
|
target_link_libraries(ddlcleanup ${ENGINE_LDFLAGS} ${NETSNMP_LIBRARIES} ${ENGINE_WRITE_LIBS} ddlcleanuputil)
|
|
|
|
install(
|
|
TARGETS ddlcleanup
|
|
DESTINATION ${ENGINE_BINDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|