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