cmake: Pacify warning about Policy CMP0042 not being set.

This commit is contained in:
Ryan C. Gordon 2017-08-09 22:43:16 -04:00
parent 80c6c2fa76
commit 73c6cebb80
1 changed files with 3 additions and 1 deletions

View File

@ -1642,7 +1642,9 @@ set(_INSTALL_LIBS "SDL2main")
if(SDL_SHARED)
add_library(SDL2 SHARED ${SOURCE_FILES} ${VERSION_SOURCES})
if(UNIX AND NOT ANDROID)
if(APPLE)
set_target_properties(SDL2 PROPERTIES MACOSX_RPATH 1)
elseif(UNIX AND NOT ANDROID)
set_target_properties(SDL2 PROPERTIES
VERSION ${LT_VERSION}
SOVERSION ${LT_REVISION}