0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 21:13:04 +02:00
obs-studio/CI/before-script-linux.sh
juvester 5f128d9e54 CI: Use ccache to speed up the build
Speeds up recompilation by caching previous compilations and detecting
when the same compilation is being done again. [skip appveyor]
2017-03-08 15:10:07 +02:00

7 lines
97 B
Bash
Executable File

#!/bin/sh
set -ex
ccache -s || echo "CCache is not available."
mkdir build && cd build
cmake ..