29 lines
695 B
Bash
Executable File
29 lines
695 B
Bash
Executable File
#!/bin/bash
|
|
if [[ ! -f README.md ]]; then
|
|
cd ..
|
|
fi
|
|
|
|
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_fmt} tool found, not formatting CMake files"
|
|
fi
|
|
|
|
cpp_format="clang-format"
|
|
folder_list=(
|
|
"./src"
|
|
"./hal"
|
|
"./tests"
|
|
)
|
|
file_selectors="-iname *.h -o -iname *.cpp -o -iname *.c -o -iname *.tpp"
|
|
if command -v ${cpp_format} &> /dev/null; then
|
|
echo "Auto-formatting ${dir} recursively"
|
|
for dir in ${allThreads[@]}; do
|
|
find ${dir} ${file_selectors} | xargs clang-format --style=file -i
|
|
done
|
|
else
|
|
echo "No ${cpp_format} tool found, not formatting C++/C files"
|
|
fi
|