Auto-Formatter Script Improvements #626

Merged
gaisser merged 9 commits from mueller/amft-cmakelists into development 2022-05-13 12:01:40 +02:00
1 changed files with 10 additions and 3 deletions
Showing only changes of commit cfa6843c8f - Show all commits

View File

@ -7,8 +7,15 @@ cmake_fmt="cmake-format"
if command -v ${cmake_fmt} &> /dev/null; then
cmake_fmt_cmd="${cmake_fmt} -i CMakeLists.txt"
eval ${cmake_fmt_cmd}
else
echo "No cmake-format tool found, not formatting CMake files"
fi
find ./src -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./hal -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./tests -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
cpp_format="clang-format"
if command -v ${clang-format} &> /dev/null; then
find ./src -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./hal -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./tests -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
else
echo "No clang-format tool found, not formatting C++/C files"
fi