1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-27 16:01:57 +03:00
Files
mariadb-columnstore-engine/utils/messageqcpp/CMakeLists.txt
2019-01-23 13:02:53 -06:00

22 lines
496 B
CMake

include_directories( ${ENGINE_COMMON_INCLUDES} )
########### next target ###############
set(messageqcpp_LIB_SRCS
messagequeue.cpp
messagequeuepool.cpp
bytestream.cpp
socketparms.cpp
inetstreamsocket.cpp
iosocket.cpp
compressed_iss.cpp
bytestreampool.cpp
)
add_library(messageqcpp SHARED ${messageqcpp_LIB_SRCS})
set_target_properties(messageqcpp PROPERTIES VERSION 1.0.0 SOVERSION 1)
install(TARGETS messageqcpp DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)