mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-25 09:17:12 +01:00
CMake: Fix SOVERSION/SONAME of non-release versions
When building SDL2 from git with CMake, you got libSDL2-2.0.so.1 instead of .0 (as it's the case when building with autotools). This was caused by using LT_REVISION instead of LT_MAJOR for SOVERSION. fixes #4310
This commit is contained in:
parent
c20207d787
commit
e2234ee97c
@ -2530,7 +2530,7 @@ if(SDL_SHARED)
|
|||||||
elseif(UNIX AND NOT ANDROID)
|
elseif(UNIX AND NOT ANDROID)
|
||||||
set_target_properties(SDL2 PROPERTIES
|
set_target_properties(SDL2 PROPERTIES
|
||||||
VERSION ${LT_VERSION}
|
VERSION ${LT_VERSION}
|
||||||
SOVERSION ${LT_REVISION}
|
SOVERSION ${LT_MAJOR}
|
||||||
OUTPUT_NAME "SDL2-${LT_RELEASE}")
|
OUTPUT_NAME "SDL2-${LT_RELEASE}")
|
||||||
else()
|
else()
|
||||||
if(WINDOWS OR CYGWIN)
|
if(WINDOWS OR CYGWIN)
|
||||||
|
Loading…
Reference in New Issue
Block a user