You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-02 17:22:27 +03:00
* more build dependencies * fix for cmake < 3.11 It cannot do ADD_LIBRARY(... ALIAS ...) on IMPORTED targets * another fix for cmake 3.10.2 It doesn't know about CMAKE_CXX_STANDARD=20, let's add the correct flag manually * gcc 8 on aarch64 utils/common/simd_arm.h:241:16: error: need ‘typename’ before ‘simd::TypeToVecWrapperType<T>::WrapperType’ because ‘simd::TypeToVecWrapperType<T>’ is a dependent scope
23 lines
620 B
CMake
23 lines
620 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} boost_filesystem boost_system)
|
|
|
|
target_compile_definitions(idbdatafile PUBLIC BOOST_NO_CXX11_SCOPED_ENUMS)
|
|
|
|
install(TARGETS idbdatafile DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|