1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-09-02 12:41:17 +03:00
Files
mariadb-columnstore-engine/utils/common/CMakeLists.txt
2022-05-02 18:23:37 +00:00

25 lines
531 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
statistics.cpp
string_prefixes.cpp)
add_library(common SHARED ${common_LIB_SRCS})
target_link_libraries(common Boost::filesystem)
add_dependencies(common loggingcpp)
install(TARGETS common DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)