draconisplusplus/subprojects/FTXUI-5.0.0/tools/format.sh

20 lines
355 B
Bash
Raw Normal View History

2025-02-20 14:49:18 -05:00
#!/bin/bash
cd "$(dirname "$0")"
cd ..
# Add the license file.
files=$(find ./src ./include ./examples -name "*.hpp" -o -name "*.cpp")
for file in $files
do
if ! grep -q Copyright $file
then
cat ./tools/license_headers.cpp $file > $file.new && mv $file.new $file
fi
done
# Use clang-format.
for file in $files
do
clang-format -i $file
done