You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-10-20 00:09:21 +03:00
16 lines
328 B
CMake
16 lines
328 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})
|
|
|
|
set_target_properties(rwlock PROPERTIES VERSION 1.0.0 SOVERSION 1)
|
|
|
|
install(TARGETS rwlock DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)
|
|
|