mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-07 19:22:02 +03:00
26 lines
468 B
CMake
26 lines
468 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
|
|
string_prefixes.cpp
|
|
)
|
|
|
|
columnstore_library(common ${common_LIB_SRCS})
|
|
columnstore_link(
|
|
common
|
|
PRIVATE
|
|
boost_filesystem
|
|
configcpp
|
|
loggingcpp
|
|
messageqcpp
|
|
idbdatafile
|
|
mariadb_charset
|
|
)
|