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:
parent
ef6391678e
commit
ba1488ec97
4 changed files with 2 additions and 2 deletions
|
@ -84,7 +84,7 @@ macro(sfml_add_library target)
|
|||
# adapt install directory to allow distributing dylibs/frameworks in user’s 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue