You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-10-20 00:09:21 +03:00
25 lines
649 B
CMake
25 lines
649 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} ../cloudio)
|
|
|
|
########### next target ###############
|
|
|
|
set(idbdatafile_LIB_SRCS
|
|
BufferedFile.cpp
|
|
IDBDataFile.cpp
|
|
IDBFactory.cpp
|
|
IDBFileSystem.cpp
|
|
IDBLogger.cpp
|
|
IDBPolicy.cpp
|
|
PosixFileSystem.cpp
|
|
UnbufferedFile.cpp)
|
|
|
|
add_library(idbdatafile SHARED ${idbdatafile_LIB_SRCS})
|
|
|
|
target_link_libraries(idbdatafile ${NETSNMP_LIBRARIES} ${ENGINE_OAM_LIBS})
|
|
|
|
target_compile_definitions(idbdatafile PUBLIC BOOST_NO_CXX11_SCOPED_ENUMS)
|
|
|
|
set_target_properties(idbdatafile PROPERTIES VERSION 1.0.0 SOVERSION 1)
|
|
|
|
install(TARGETS idbdatafile DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)
|