1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-24 08:41:09 +03:00
Files
mariadb-columnstore-engine/utils/querytele/CMakeLists.txt
Sergei Golubchik dee50318ad Serg dev (#2502)
* 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
2022-08-13 07:18:30 +03:00

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)