-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From 8504bfc72b52ea3a7161b098688a6fc70bf6713e Mon Sep 17 00:00:00 2001 | ||
From: O01eg <o01eg@yandex.ru> | ||
Date: Wed, 25 Dec 2024 08:26:55 +0400 | ||
Subject: [PATCH] CMake: Remove so-names | ||
|
||
--- | ||
CMakeLists.txt | 3 +-- | ||
1 file changed, 1 insertion(+), 2 deletions(-) | ||
|
||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index a596eec..5a17493 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -3291,8 +3291,7 @@ if(SDL_SHARED) | ||
# FIXME: Remove SOVERSION in SDL3 | ||
set_target_properties(SDL2 PROPERTIES | ||
MACOSX_RPATH 1 | ||
- SOVERSION 0 | ||
- OUTPUT_NAME "SDL2-${LT_RELEASE}") | ||
+ OUTPUT_NAME "SDL2") | ||
elseif(UNIX AND NOT ANDROID) | ||
set_target_properties(SDL2 PROPERTIES | ||
VERSION ${LT_VERSION} | ||
-- | ||
2.45.2 | ||
|