5f128d9e54
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 ..
|