SDL_rtf: cmake: use SONAME instead of full name for shared vendored libraries (9267e)

From 9267e59580368b79c96d2852396028b7ec07935f Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Tue, 5 Sep 2023 23:41:45 +0200
Subject: [PATCH] cmake: use SONAME instead of full name for shared vendored
 libraries

---
 cmake/PrivateSdlFunctions.cmake | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/cmake/PrivateSdlFunctions.cmake b/cmake/PrivateSdlFunctions.cmake
index a3f4beb..c0af194 100644
--- a/cmake/PrivateSdlFunctions.cmake
+++ b/cmake/PrivateSdlFunctions.cmake
@@ -237,7 +237,12 @@ function(target_get_dynamic_library DEST TARGET)
         else()
             message(WARNING "Unable to extract dynamic library from target=${TARGET}, type=${target_type}.")
         endif()
-        set (result "$<TARGET_FILE_NAME:${TARGET}>")
+        # TARGET_SONAME_FILE is not allowed for DLL target platforms.
+        if(WIN32)
+            set(result "$<TARGET_FILE_NAME:${TARGET}>")
+        else()
+            set(result "$<TARGET_SONAME_FILE_NAME:${TARGET}>")
+        endif()
     endif()
     set(${DEST} ${result} PARENT_SCOPE)
 endfunction()