mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-27 01:46:51 +00:00
32 lines
762 B
Bash
Executable file
32 lines
762 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright 2019-2024, Collabora, Ltd.
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
# Author: Rylie Pavlik <rylie.pavlik@collabora.com>
|
|
|
|
# Formats all the CMake files in this project
|
|
|
|
set -e
|
|
|
|
CMAKE_FORMAT=cmake-format
|
|
if ! command -v ${CMAKE_FORMAT} > /dev/null; then
|
|
echo "cmake-format not found, do pipx install cmakelang" 1>&2
|
|
exit 1
|
|
fi
|
|
(
|
|
echo "${CMAKE_FORMAT}"
|
|
"${CMAKE_FORMAT}" -v
|
|
|
|
cd "$(dirname $0)/.."
|
|
find \
|
|
CMakeLists.txt \
|
|
doc \
|
|
src/xrt \
|
|
src/external/CMakeLists.txt \
|
|
src/CMakeLists.txt \
|
|
tests \
|
|
\( -name "CMakeLists.txt" -o -name "*.cmake" \) \
|
|
! -name ".cmake" \
|
|
-print0 | \
|
|
xargs -0 "${CMAKE_FORMAT}" -c "$(pwd)/.cmake-format.py" -i
|
|
)
|