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