1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00
* build boost during build phase, not during configure

* add dependency for generated header files errorids.h messageids.h

see 7e868bc588

* set explicit dependencies on external_boost for #include's

* clang-14 compatibility fix
This commit is contained in:
Sergei Golubchik
2022-08-13 06:18:30 +02:00
committed by GitHub
parent 35f0f7bf0a
commit dee50318ad
10 changed files with 47 additions and 74 deletions

View File

@ -12,6 +12,7 @@ set(compress_LIB_SRCS
add_definitions(-DNDEBUG)
add_library(compress SHARED ${compress_LIB_SRCS})
add_dependencies(compress loggingcpp external_boost)
target_link_libraries(compress ${SNAPPY_LIBRARIES})
IF(HAVE_LZ4)