Use semantic versioning symbolic links in the installed target
diff --git a/src/main/cpp/CMakeLists.txt b/src/main/cpp/CMakeLists.txt
index cdf3034..779554a 100644
--- a/src/main/cpp/CMakeLists.txt
+++ b/src/main/cpp/CMakeLists.txt
@@ -164,3 +164,7 @@
   xmlsocketappender.cpp
   zipcompressaction.cpp
 )
+set_target_properties(log4cxx PROPERTIES
+  VERSION ${log4cxx_VERSION_MAJOR}.${log4cxx_VERSION_MINOR}.${log4cxx_VERSION_PATCH}
+  SOVERSION ${log4cxx_VERSION_MAJOR}
+)