mirror of https://github.com/libsdl-org/SDL
Fixed bug 4135 - Broken symlink libSDL2.so since rev11940
Tiago O. Symlink points to the wrong folder, and target will always have debug postfix, so it'll be broken for other build types.
This commit is contained in:
parent
b7228bc51f
commit
5e8c81673f
|
@ -1808,6 +1808,13 @@ endforeach()
|
||||||
list(APPEND INCLUDE_FILES ${BIN_INCLUDE_FILES})
|
list(APPEND INCLUDE_FILES ${BIN_INCLUDE_FILES})
|
||||||
install(FILES ${INCLUDE_FILES} DESTINATION include/SDL2)
|
install(FILES ${INCLUDE_FILES} DESTINATION include/SDL2)
|
||||||
|
|
||||||
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" UPPER_BUILD_TYPE)
|
||||||
|
if (UPPER_BUILD_TYPE MATCHES DEBUG)
|
||||||
|
set(SOPOSTFIX "${SDL_CMAKE_DEBUG_POSTFIX}")
|
||||||
|
else()
|
||||||
|
set(SOPOSTFIX "")
|
||||||
|
endif()
|
||||||
|
|
||||||
if(NOT (WINDOWS OR CYGWIN))
|
if(NOT (WINDOWS OR CYGWIN))
|
||||||
if(SDL_SHARED)
|
if(SDL_SHARED)
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
|
@ -1818,7 +1825,8 @@ if(NOT (WINDOWS OR CYGWIN))
|
||||||
if(NOT ANDROID)
|
if(NOT ANDROID)
|
||||||
install(CODE "
|
install(CODE "
|
||||||
execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink
|
execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink
|
||||||
\"${SDL2_BINARY_DIR}/libSDL2-2.0${SDL_CMAKE_DEBUG_POSTFIX}.${SOEXT}\" \"${SDL2_BINARY_DIR}/libSDL2.${SOEXT}\")")
|
\"libSDL2-2.0${SOPOSTFIX}.${SOEXT}\" \"libSDL2.${SOEXT}\")"
|
||||||
|
WORKING_DIR "${SDL2_BINARY_DIR}")
|
||||||
install(FILES ${SDL2_BINARY_DIR}/libSDL2.${SOEXT} DESTINATION "lib${LIB_SUFFIX}")
|
install(FILES ${SDL2_BINARY_DIR}/libSDL2.${SOEXT} DESTINATION "lib${LIB_SUFFIX}")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue