mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
14 lines
173 B
Bash
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
|