From 8b8b6965c36569e2a0d404653bf5afb7f4b0d218 Mon Sep 17 00:00:00 2001 From: Conrad Date: Wed, 15 Jan 2020 12:33:00 +0100 Subject: [PATCH] Added Release Script Draft --- release.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 release.sh diff --git a/release.sh b/release.sh new file mode 100644 index 0000000..465d442 --- /dev/null +++ b/release.sh @@ -0,0 +1,14 @@ +# Run CPP Check +cppcheck --enable=all --output-file=cppcheck_errors.txt src/ +# Uncrustify Files +find . \( -name "*.cpp" -o -name "*.c" -o -name "*.h" \) -exec uncrustify -c conf/uncrustify.cfg --no-backup {} +# Run Unit Tests + +# Remove Overhead Folders/ Files +rm -r src/build-* +rm -r build-*/ +rm -r Examples/ +rm src/IntelliPhoto.pro.user + +# Run Doxygen +doxygen conf/intelliphoto_dox