Cocoa: Fix install name for installed dylib

The install name was incorrectly set to a relative path.

This change leaves the install name of the installed dylib as
@rpath/soname.  Those who wish to override this can set the
CMAKE_INSTALL_NAME_DIR variable.

Closes #1504.

(cherry picked from commit 384ff74a46)
This commit is contained in:
Laurent Aphecetche 2019-06-14 16:42:50 +02:00 committed by Camilla Löwy
parent 8270081334
commit 5a15d8a784

View File

@ -168,9 +168,6 @@ if (BUILD_SHARED_LIBS)
elseif (APPLE) elseif (APPLE)
# Add -fno-common to work around a bug in Apple's GCC # Add -fno-common to work around a bug in Apple's GCC
target_compile_options(glfw PRIVATE "-fno-common") target_compile_options(glfw PRIVATE "-fno-common")
set_target_properties(glfw PROPERTIES
INSTALL_NAME_DIR "${CMAKE_INSTALL_LIBDIR}")
endif() endif()
if (UNIX) if (UNIX)