Files
renderdoc/util/buildscripts/scripts/make_package.sh
T
baldurk c73f045241 Add packaging/buildscript support for macOS
* Add realpath.sh for emulating readlink -f on macOS
  MIT licensed from https://github.com/mkropat/sh-realpath
2019-03-01 17:47:10 +00:00

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