You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
18 lines
391 B
CMake
18 lines
391 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(batchloader_LIB_SRCS batchloader.cpp)
|
|
|
|
columnstore_library(batchloader ${batchloader_LIB_SRCS})
|
|
|
|
add_dependencies(batchloader loggingcpp)
|
|
|
|
target_link_libraries(batchloader ${NETSNMP_LIBRARIES})
|
|
|
|
install(
|
|
TARGETS batchloader
|
|
DESTINATION ${ENGINE_LIBDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|