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