Merge branch 'feature/rpath_osx'

This commit is contained in:
Lukas Dürrenberger 2014-10-09 09:11:23 +02:00
commit c348171f24
5 changed files with 5 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

View File

@ -127,6 +127,9 @@ subject to the following restrictions:
<dict>
<key>INFOPLIST_FILE</key>
<string>___PACKAGENAME___/___PACKAGENAME___-Info.plist</string>
<key>LD_RUNPATH_SEARCH_PATHS</key>
<string>@loader_path/../Frameworks</string>
</dict>
</dict>
</array>