Cache: Install storage implementations as well

As the cache is marked as being core, the storage modules needs
to be marked as core as well.
This commit is contained in:
Johan Wikman
2017-01-30 13:09:06 +02:00
parent 4e50f3e0cd
commit 03067b586c
2 changed files with 2 additions and 2 deletions

View File

@ -7,4 +7,4 @@ add_library(storage_inmemory SHARED
target_link_libraries(storage_inmemory cache maxscale-common)
set_target_properties(storage_inmemory PROPERTIES VERSION "1.0.0")
set_target_properties(storage_inmemory PROPERTIES LINK_FLAGS -Wl,-z,defs)
install_module(storage_inmemory experimental)
install_module(storage_inmemory core)

View File

@ -20,7 +20,7 @@ if (ROCKSDB_BUILT)
target_link_libraries(storage_rocksdb maxscale-common ${JANSSON_LIBRARIES} ${ROCKSDB_LIB} ${ROCKSDB_LINK_LIBS})
set_target_properties(storage_rocksdb PROPERTIES VERSION "1.0.0")
set_target_properties(storage_rocksdb PROPERTIES LINK_FLAGS -Wl,-z,defs)
install_module(storage_rocksdb experimental)
install_module(storage_rocksdb core)
else()
message("RocksDB not built, storage_rocksdb cannot be built.")
endif()