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
22 lines
540 B
CMake
22 lines
540 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(messageqcpp_LIB_SRCS
|
|
messagequeue.cpp
|
|
messagequeuepool.cpp
|
|
bytestream.cpp
|
|
socketparms.cpp
|
|
inetstreamsocket.cpp
|
|
samenodepseudosocket.cpp
|
|
iosocket.cpp
|
|
compressed_iss.cpp
|
|
bytestreampool.cpp
|
|
)
|
|
|
|
add_library(messageqcpp STATIC ${messageqcpp_LIB_SRCS})
|
|
|
|
add_dependencies(messageqcpp loggingcpp)
|
|
|
|
# We don't isntall static library install(TARGETS messageqcpp DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|