1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Merge pull request #2338 from mariadb-corporation/external-boost

Use external boost 1.78
This commit is contained in:
Roman Nozdrin
2022-05-04 13:25:22 +02:00
committed by GitHub
10 changed files with 60 additions and 54 deletions

View File

@ -16,7 +16,7 @@ set(common_LIB_SRCS
add_library(common SHARED ${common_LIB_SRCS})
target_link_libraries(common boost_filesystem)
target_link_libraries(common Boost::filesystem)
add_dependencies(common loggingcpp)

View File

@ -15,7 +15,7 @@ set(idbdatafile_LIB_SRCS
add_library(idbdatafile SHARED ${idbdatafile_LIB_SRCS})
target_link_libraries(idbdatafile ${NETSNMP_LIBRARIES} ${ENGINE_OAM_LIBS})
target_link_libraries(idbdatafile ${NETSNMP_LIBRARIES} ${ENGINE_OAM_LIBS} Boost::filesystem Boost::system)
target_compile_definitions(idbdatafile PUBLIC BOOST_NO_CXX11_SCOPED_ENUMS)

View File

@ -155,7 +155,6 @@ JoinPartition::JoinPartition(const JoinPartition& jp, bool splitMode)
, nextSmallOffset(0)
, nextLargeOffset(0)
{
boost::posix_time::ptime t;
ostringstream os;
fileMode = true;

View File

@ -9,5 +9,6 @@ set(threadpool_LIB_SRCS weightedthreadpool.cpp threadpool.cpp prioritythreadpool
add_library(threadpool SHARED ${threadpool_LIB_SRCS})
add_dependencies(threadpool loggingcpp)
target_link_libraries(threadpool Boost::chrono)
install(TARGETS threadpool DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)