6 lines
97 B
Bash
Executable file
6 lines
97 B
Bash
Executable file
#!/bin/sh
|
|
set -ex
|
|
|
|
ccache -s || echo "CCache is not available."
|
|
mkdir build && cd build
|
|
cmake ..
|