mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
14 lines
174 B
Bash
Executable File
14 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Compilation is platform-specific, dispatch to helper
|
|
|
|
if [ "$PLATFORM" == "Linux" ]; then
|
|
|
|
./scripts/compile_linux.sh
|
|
|
|
else
|
|
|
|
./scripts/compile_win32.sh
|
|
|
|
fi
|