Skip to content

Commit 0869816

Browse files
committed
fix: Explicit search paths for @rpath
1 parent c31c407 commit 0869816

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

misc/macos/make_app_bundle.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,12 @@ for lib in "${LIBS_DIR}"/*.dylib; do
8383
done
8484

8585
# Bundle non-system dynamic libraries (Homebrew deps etc.).
86-
dylibbundler -of -cd -b -x "${MACOS_DIR}/xr_3da" -d "${LIBS_DIR}"
86+
dylibbundler \
87+
-of -cd -b \
88+
-x "${MACOS_DIR}/xr_3da" \
89+
-d "${LIBS_DIR}" \
90+
-s "${BIN_DIR}" \
91+
-s "${LIBS_DIR}"
8792

8893
APP_ZIP="${ARTIFACTS_DIR}/openxray-${CONFIGURATION}-${ARCH}.app.zip"
8994
DMG_PATH="${ARTIFACTS_DIR}/openxray-${CONFIGURATION}-${ARCH}.dmg"

0 commit comments

Comments
 (0)