Improve flexibility of dependencies locations on OS X

- Replaced @executable_path by @rpath for more flexibility
 - Updated freetype and sndfile libs as follow:

    install_name_tool -id "@rpath/../Frameworks/freetype.framework/Versions/A/freetype" freetype
    install_name_tool -id "@rpath/../Frameworks/sndfile.framework/Versions/A/sndfile" sndfile
This commit is contained in:
Marco Antognini 2014-10-07 10:46:05 +02:00
parent ef6391678e
commit ba1488ec97
4 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ else()
# NOTE: it's not required to link agains SFML.framework
set_target_properties(SFML PROPERTIES
BUILD_WITH_INSTALL_RPATH 1
INSTALL_NAME_DIR "@executable_path/../Frameworks")
INSTALL_NAME_DIR "@rpath")
# install rule
install(TARGETS SFML

View File

@ -84,7 +84,7 @@ macro(sfml_add_library target)
# adapt install directory to allow distributing dylibs/frameworks in users frameworks/application bundle
set_target_properties(${target} PROPERTIES
BUILD_WITH_INSTALL_RPATH 1
INSTALL_NAME_DIR "@executable_path/../Frameworks")
INSTALL_NAME_DIR "@rpath")
endif()
# enable automatic reference counting on iOS