mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
13 lines
237 B
Bash
Executable File
13 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BUNDLE="`echo "$0" | sed -e 's/\/Contents\/MacOS\/.*//'`"
|
|
RESOURCES="$BUNDLE/Contents/Resources"
|
|
|
|
echo "BUNDLE: $BUNDLE"
|
|
echo "RESOURCES: $RESOURCES"
|
|
|
|
export DYLD_LIBRARY_PATH=$RESOURCES/lib
|
|
|
|
exec "$RESOURCES/bin/Executable"
|
|
|