You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
22 lines
482 B
CMake
22 lines
482 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)
|
|
|