summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 9f7e9e8..cf736a1 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -115,6 +115,10 @@ include_directories(
add_definitions("-std=c99 -Wall")
add_library(uca SHARED ${uca_SRCS})
+set_target_properties(uca PROPERTIES
+ VERSION ${UCA_ABI_VERSION}
+ SOVERSION ${UCA_ABI_MAJOR_VERSION})
+
target_link_libraries(uca ${uca_LIBS})
# --- Install target ----------------------------------------------------------