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
16 lines
327 B
CMake
16 lines
327 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(joiner_LIB_SRCS tuplejoiner.cpp joinpartition.cpp)
|
|
|
|
columnstore_library(joiner ${joiner_LIB_SRCS})
|
|
|
|
add_dependencies(joiner loggingcpp)
|
|
|
|
install(
|
|
TARGETS joiner
|
|
DESTINATION ${ENGINE_LIBDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|