You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +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
15 lines
314 B
CMake
15 lines
314 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(rwlock_LIB_SRCS rwlock.cpp rwlock_local.cpp)
|
|
|
|
add_library(rwlock SHARED ${rwlock_LIB_SRCS})
|
|
add_dependencies(rwlock external_boost)
|
|
|
|
install(TARGETS rwlock DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|
|
|