You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-10-20 00:09:21 +03:00
16 lines
345 B
CMake
16 lines
345 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(joiner_LIB_SRCS joiner.cpp tuplejoiner.cpp joinpartition.cpp)
|
|
|
|
add_library(joiner SHARED ${joiner_LIB_SRCS})
|
|
|
|
set_target_properties(joiner PROPERTIES VERSION 1.0.0 SOVERSION 1)
|
|
|
|
install(TARGETS joiner DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)
|
|
|
|
|