mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-16 18:28:35 -05:00
Speeds up recompilation by caching previous compilations and detecting when the same compilation is being done again. [skip appveyor]
7 lines
97 B
Bash
Executable File
7 lines
97 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
ccache -s || echo "CCache is not available."
|
|
mkdir build && cd build
|
|
cmake ..
|