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
17 lines
426 B
CMake
17 lines
426 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(configcpp_LIB_SRCS configcpp.cpp xmlparser.cpp configstream.cpp)
|
|
|
|
columnstore_library(configcpp ${configcpp_LIB_SRCS})
|
|
add_dependencies(configcpp loggingcpp)
|
|
|
|
target_compile_definitions(configcpp PUBLIC BOOST_NO_CXX11_SCOPED_ENUMS)
|
|
|
|
install(
|
|
TARGETS configcpp
|
|
DESTINATION ${ENGINE_LIBDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|