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
* feat(cpimport): MCOL-4882 add a parameter to skip header rows * chore(cpimport): MCOL-4882 Use boost::program_options to arguments parsing * feat(cpimport.bin): MCOL-4882 Add missing changes * add test * fix clang * add missing cmdline argument * fix bug * Fix double lines skipping * Fix incorrect --silent (-N) parsing * fix default --max-errors processing * fix overwriting default username * move initialization to members declaration
51 lines
1.1 KiB
CMake
51 lines
1.1 KiB
CMake
include_directories(${ENGINE_COMMON_INCLUDES} ${S3API_DIR})
|
|
|
|
link_directories(${CMAKE_BINARY_DIR}/lib)
|
|
|
|
# ########## next target ###############
|
|
|
|
set(we_bulk_STAT_SRCS
|
|
we_brmreporter.cpp
|
|
we_bulkload.cpp
|
|
we_bulkloadbuffer.cpp
|
|
we_bulkstatus.cpp
|
|
we_cmdargs.cpp
|
|
we_colopbulk.cpp
|
|
we_colbuf.cpp
|
|
we_colbufcompressed.cpp
|
|
we_colbufmgr.cpp
|
|
we_colbufmgrdctnry.cpp
|
|
we_colbufsec.cpp
|
|
we_colextinf.cpp
|
|
we_columninfo.cpp
|
|
we_columninfocompressed.cpp
|
|
we_columnautoinc.cpp
|
|
we_extentstripealloc.cpp
|
|
we_tableinfo.cpp
|
|
we_tempxmlgendata.cpp
|
|
we_workers.cpp
|
|
)
|
|
|
|
add_definitions(-D_FILE_OFFSET_BITS=64)
|
|
|
|
columnstore_static_library(we_bulk ${we_bulk_STAT_SRCS})
|
|
columnstore_link(we_bulk ${NETSNMP_LIBRARIES} loggingcpp boost_program_options)
|
|
|
|
remove_definitions(-D_FILE_OFFSET_BITS=64)
|
|
|
|
# ########## next target ###############
|
|
|
|
set(cpimport.bin_SRCS cpimport.cpp)
|
|
|
|
columnstore_executable(cpimport.bin ${cpimport.bin_SRCS})
|
|
add_dependencies(cpimport.bin marias3)
|
|
columnstore_link(
|
|
cpimport.bin
|
|
${ENGINE_LDFLAGS}
|
|
${NETSNMP_LIBRARIES}
|
|
${ENGINE_WRITE_LIBS}
|
|
${S3API_DEPS}
|
|
we_bulk
|
|
we_xml
|
|
)
|