mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
c73f045241
* Add realpath.sh for emulating readlink -f on macOS MIT licensed from https://github.com/mkropat/sh-realpath
18 lines
264 B
Bash
Executable File
18 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Packaging is platform-specific, dispatch to helper
|
|
|
|
if [ "$PLATFORM" == "Linux" ]; then
|
|
|
|
./scripts/make_package_linux.sh $1
|
|
|
|
elif [ "$PLATFORM" == "macOS" ]; then
|
|
|
|
./scripts/make_package_macos.sh $1
|
|
|
|
else
|
|
|
|
./scripts/make_package_win32.sh $1
|
|
|
|
fi
|