You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-09-02 12:41:17 +03:00
21 lines
460 B
CMake
21 lines
460 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(querytele_LIB_SRCS
|
|
querytele.cpp
|
|
queryteleclient.cpp
|
|
querytele_constants.cpp
|
|
querytele_types.cpp
|
|
QueryTeleService.cpp
|
|
queryteleprotoimpl.cpp)
|
|
|
|
add_library(querytele SHARED ${querytele_LIB_SRCS})
|
|
|
|
set_target_properties(querytele PROPERTIES VERSION 1.0.0 SOVERSION 1)
|
|
|
|
install(TARGETS querytele DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)
|
|
|