You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
named linkage
This commit is contained in:
committed by
Leonid Fedorov
parent
71b5ca0b39
commit
2036e521c7
8
cmake/ColumnstoreLibrary.cmake
Normal file
8
cmake/ColumnstoreLibrary.cmake
Normal file
@ -0,0 +1,8 @@
|
||||
# Function to create either a static or shared library based on COLUMNSTORE_STATIC_LIBRARIES
|
||||
macro(columnstore_library libname)
|
||||
if(COLUMNSTORE_STATIC_LIBRARIES)
|
||||
add_library(${libname} STATIC ${ARGN})
|
||||
else()
|
||||
add_library(${libname} SHARED ${ARGN})
|
||||
endif()
|
||||
endmacro()
|
Reference in New Issue
Block a user