Files
renderdoc/util/buildscripts/scripts/compile.sh
T
2018-05-02 18:18:08 +01:00

14 lines
173 B
Bash
Executable File

#!/bin/bash
## Compilation is platform-specific, dispatch to helper
if [ "$(uname)" == "Linux" ]; then
./scripts/compile_linux.sh
else
./scripts/compile_win32.sh
fi