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
24 lines
494 B
CMake
24 lines
494 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(dbload_STAT_SRCS inputmgr.cpp)
|
|
|
|
add_library(dbload STATIC ${dbload_STAT_SRCS})
|
|
|
|
add_dependencies(dbload loggingcpp)
|
|
|
|
# ########## next target ###############
|
|
|
|
set(colxml_SRCS colxml.cpp)
|
|
|
|
add_executable(colxml ${colxml_SRCS})
|
|
|
|
target_link_libraries(colxml ${ENGINE_LDFLAGS} dbload ${ENGINE_WRITE_LIBS})
|
|
|
|
install(
|
|
TARGETS colxml
|
|
DESTINATION ${ENGINE_BINDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|