2020-04-20 03:00:37 +08: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
|
2020-08-16 06:24:18 +08:00
|
|
|
cat $file ./other/license_headers.cpp > $file.new && mv $file.new $file
|
2020-04-20 03:00:37 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Use clang-format.
|
|
|
|
for file in $files
|
|
|
|
do
|
|
|
|
clang-format -i $file
|
|
|
|
done
|
2020-05-25 07:34:13 +08:00
|
|
|
|
|
|
|
exampleList="./doc/example_list.md"
|
|
|
|
echo "# Examples" > $exampleList
|
|
|
|
files=$(find ./examples/ -iname "*.cpp")
|
|
|
|
for f in $files
|
|
|
|
do
|
|
|
|
echo "@example $f" >> $exampleList
|
|
|
|
done
|