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