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
12 lines
222 B
CMake
12 lines
222 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
ADD_DEFINITIONS(-fPIC -DPIC)
|
|
|
|
add_library(idbboot STATIC installdir.cpp)
|
|
add_dependencies(idbboot external_boost)
|
|
|
|
INSTALL(TARGETS idbboot DESTINATION ${ENGINE_LIBDIR})
|
|
|
|
|