mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-02 13:27:14 -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 ..
|