You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
Add CMake build tree files
This commit is contained in:
40
writeengine/bulk/CMakeLists.txt
Normal file
40
writeengine/bulk/CMakeLists.txt
Normal file
@ -0,0 +1,40 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(we_bulk_STAT_SRCS
|
||||
we_brmreporter.cpp
|
||||
we_bulkload.cpp
|
||||
we_bulkloadbuffer.cpp
|
||||
we_bulkstatus.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)
|
||||
add_library(we_bulk STATIC ${we_bulk_STAT_SRCS})
|
||||
REMOVE_DEFINITIONS(-D_FILE_OFFSET_BITS=64)
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(cpimport.bin_SRCS cpimport.cpp)
|
||||
|
||||
add_executable(cpimport.bin ${cpimport.bin_SRCS})
|
||||
|
||||
target_link_libraries(cpimport.bin ${ENGINE_LDFLAGS} ${ENGINE_WRITE_LIBS} we_bulk we_xml)
|
||||
|
||||
install(TARGETS cpimport.bin DESTINATION ${ENGINE_BINDIR})
|
||||
|
Reference in New Issue
Block a user