You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-27 16:01:57 +03:00
15 lines
334 B
CMake
15 lines
334 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(cacheutils_LIB_SRCS cacheutils.cpp)
|
|
|
|
add_library(cacheutils SHARED ${cacheutils_LIB_SRCS})
|
|
|
|
set_target_properties(cacheutils PROPERTIES VERSION 1.0.0 SOVERSION 1)
|
|
|
|
install(TARGETS cacheutils DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)
|
|
|