You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
16 lines
328 B
CMake
16 lines
328 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(cacheutils_LIB_SRCS cacheutils.cpp)
|
|
|
|
columnstore_library(cacheutils ${cacheutils_LIB_SRCS})
|
|
|
|
add_dependencies(cacheutils loggingcpp)
|
|
|
|
install(
|
|
TARGETS cacheutils
|
|
DESTINATION ${ENGINE_LIBDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|