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
19 lines
462 B
CMake
19 lines
462 B
CMake
include_directories(BEFORE ${LIBMARIADB_BININC_DIR} ${LIBMARIADB_SRCINC_DIR})
|
|
add_definitions(-DMYSQL_SERVICE_THD_TIMEZONE_INCLUDED)
|
|
|
|
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(querystats_LIB_SRCS querystats.cpp)
|
|
|
|
columnstore_library(querystats ${querystats_LIB_SRCS})
|
|
|
|
add_dependencies(querystats loggingcpp)
|
|
|
|
install(
|
|
TARGETS querystats
|
|
DESTINATION ${ENGINE_LIBDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|