mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 20:00:32 +02:00
10 lines
382 B
Bash
Executable File
10 lines
382 B
Bash
Executable File
# Run CPP Check
|
|
echo "Running CPPCheck..."
|
|
cppcheck --enable=all --output-file=cppcheck_errors.txt src/
|
|
cppcheck --check-config --output-file=cppcheck_config.txt src/
|
|
echo "CPPCheck finished"
|
|
# Uncrustify Files
|
|
echo "Running Uncrustify..."
|
|
find . \( -name "*.cpp" -o -name "*.c" -o -name "*.h" \) -exec uncrustify -c conf/uncrustify.cfg --no-backup {} +
|
|
echo "Uncrustify finished."
|