1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-02 06:13:16 +03:00
Files
mariadb-columnstore-engine/utils/batchloader/CMakeLists.txt
2016-07-15 10:49:57 -05:00

16 lines
326 B
CMake

include_directories( ${ENGINE_COMMON_INCLUDES} )
########### next target ###############
set(batchloader_LIB_SRCS batchloader.cpp)
add_library(batchloader SHARED ${batchloader_LIB_SRCS})
set_target_properties(batchloader PROPERTIES VERSION 1.0.0 SOVERSION 1)
install(TARGETS batchloader DESTINATION ${ENGINE_LIBDIR})