You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-24 08:41:09 +03:00
* build boost during build phase, not during configure
* add dependency for generated header files errorids.h messageids.h
see 7e868bc588
* set explicit dependencies on external_boost for #include's
* clang-14 compatibility fix
20 lines
446 B
CMake
20 lines
446 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})
|
|
add_dependencies(querytele external_boost)
|
|
|
|
install(TARGETS querytele DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|
|
|