2022-05-13 11:56:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
if [[ ! -f README.md ]]; then
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
|
2022-08-24 17:44:55 +02:00
|
|
|
folder_list=(
|
|
|
|
"./src"
|
|
|
|
"./unittests"
|
|
|
|
)
|
|
|
|
|
2022-05-13 11:56:37 +02:00
|
|
|
cmake_fmt="cmake-format"
|
2022-05-16 14:54:43 +02:00
|
|
|
file_selectors="-iname CMakeLists.txt"
|
2022-05-13 11:56:37 +02:00
|
|
|
if command -v ${cmake_fmt} &> /dev/null; then
|
2022-05-16 14:54:43 +02:00
|
|
|
${cmake_fmt} -i CMakeLists.txt
|
2022-08-03 13:15:49 +02:00
|
|
|
find ./src ${file_selectors} | xargs ${cmake_fmt} -i
|
|
|
|
find ./unittests ${file_selectors} | xargs ${cmake_fmt} -i
|
2022-05-13 11:56:37 +02:00
|
|
|
else
|
|
|
|
echo "No ${cmake_fmt} tool found, not formatting CMake files"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cpp_format="clang-format"
|
|
|
|
file_selectors="-iname *.h -o -iname *.cpp -o -iname *.c -o -iname *.tpp"
|
|
|
|
if command -v ${cpp_format} &> /dev/null; then
|
2022-08-24 17:44:55 +02:00
|
|
|
for dir in ${folder_list[@]}; do
|
|
|
|
echo "Auto-formatting ${dir} recursively"
|
|
|
|
find ${dir} ${file_selectors} | xargs clang-format --style=file -i
|
|
|
|
done
|
2022-05-13 11:56:37 +02:00
|
|
|
else
|
|
|
|
echo "No ${cpp_format} tool found, not formatting C++/C files"
|
|
|
|
fi
|