1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Description: Set SOVERSION needed for Debian policy
Author: Alastair McKinstry <mckinstry@debian.org>
Last-Updated: 2024-10-23
Forwareded: not-needed
--- a/src/fdb5/CMakeLists.txt
+++ b/src/fdb5/CMakeLists.txt
@@ -411,6 +411,8 @@
TYPE SHARED # Library needs to be shared for dynamic factory self registration
+ VERSION 0d
+
SOURCES
${fdb5_srcs}
--- a/src/dummy_daos/CMakeLists.txt
+++ b/src/dummy_daos/CMakeLists.txt
@@ -7,6 +7,9 @@
HEADER_DESTINATION ${INSTALL_INCLUDE_DIR}
+ VERSION
+ 0d
+
SOURCES
daos.h
daos.cc
@@ -32,7 +35,10 @@
SOURCES
daos/tests_lib.h
daos/tests_lib.cc
-
+
+ VERSION
+ 0d
+
PRIVATE_INCLUDES
${PROJECT_SOURCE_DIR}/../daos.h
${PROJECT_SOURCE_DIR}/../dummy_daos.h
|