mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-13 16:59:21 -05:00
12 lines
159 B
Bash
Executable File
12 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
|
|
./formatcode.sh
|
|
if ! ./CI/check-format.sh; then
|
|
exit 1
|
|
fi
|
|
|
|
set -ex
|
|
ccache -s || echo "CCache is not available."
|
|
mkdir build && cd build
|
|
cmake ..
|