1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

MCOL-4136 This patch makes an explicit dependency on generated errorids.h

This commit is contained in:
Roman Nozdrin
2020-08-05 12:18:40 +00:00
parent e535c1d8d3
commit 1c74f80d76
20 changed files with 39 additions and 0 deletions

View File

@@ -28,6 +28,8 @@ set(we_bulk_STAT_SRCS
ADD_DEFINITIONS(-D_FILE_OFFSET_BITS=64)
add_library(we_bulk STATIC ${we_bulk_STAT_SRCS})
add_dependencies(we_bulk loggingcpp)
target_link_libraries(we_bulk ${NETSNMP_LIBRARIES})
REMOVE_DEFINITIONS(-D_FILE_OFFSET_BITS=64)

View File

@@ -11,6 +11,8 @@ set(writeengineredistribute_LIB_SRCS
add_library(writeengineredistribute SHARED ${writeengineredistribute_LIB_SRCS})
add_dependencies(writeengineredistribute loggingcpp)
target_link_libraries(writeengineredistribute ${NETSNMP_LIBRARIES})
target_compile_definitions(writeengineredistribute PUBLIC BOOST_NO_CXX11_SCOPED_ENUMS)

View File

@@ -39,6 +39,8 @@ add_definitions(-D_FILE_OFFSET_BITS=64)
add_library(writeengine SHARED ${writeengine_LIB_SRCS})
add_dependencies(writeengine loggingcpp)
target_link_libraries(writeengine ${NETSNMP_LIBRARIES})
install(TARGETS writeengine DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)

View File

@@ -14,5 +14,7 @@ add_definitions(-D_FILE_OFFSET_BITS=64)
add_library(we_xml STATIC ${we_xml_STAT_SRCS})
add_dependencies(we_xml loggingcpp)
INSTALL(TARGETS we_xml DESTINATION ${ENGINE_LIBDIR})