1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-01 06:21:41 +03:00
Files
mariadb-columnstore-engine/utils/batchloader/CMakeLists.txt

18 lines
381 B
CMake

include_directories( ${ENGINE_COMMON_INCLUDES} )
########### next target ###############
set(batchloader_LIB_SRCS batchloader.cpp)
add_library(batchloader SHARED ${batchloader_LIB_SRCS})
add_dependencies(batchloader loggingcpp)
target_link_libraries(batchloader ${NETSNMP_LIBRARIES})
install(TARGETS batchloader DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)