Files
renderdoc/util/buildscripts/scripts/compile.sh
T
2018-05-02 17:33:56 +01:00

14 lines
173 B
Bash

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