mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
23 lines
508 B
CMake
23 lines
508 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 SHARED ${messageqcpp_LIB_SRCS})
|
|
|
|
add_dependencies(messageqcpp loggingcpp)
|
|
|
|
install(TARGETS messageqcpp DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|