You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-26 05:02:32 +03:00
22 lines
463 B
CMake
22 lines
463 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
########### next target ###############
|
|
|
|
set(common_LIB_SRCS
|
|
fixedallocator.cpp
|
|
poolallocator.cpp
|
|
cgroupconfigurator.cpp
|
|
MonitorProcMem.cpp
|
|
nullvaluemanip.cpp
|
|
threadnaming.cpp
|
|
utils_utf8.cpp
|
|
emptyvaluemanip.cpp)
|
|
|
|
add_library(common SHARED ${common_LIB_SRCS})
|
|
|
|
add_dependencies(common loggingcpp)
|
|
|
|
install(TARGETS common DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|
|
|