cppcheck/runastyle

17 lines
408 B
Plaintext
Raw Normal View History

#!/bin/bash
style="--style=ansi --min-conditional-indent=0"
2010-08-29 09:35:21 +02:00
options="--pad-header --unpad-paren" --suffix=none
astyle $style $options cli/*.cpp
astyle $style $options cli/*.h
astyle $style $options gui/*.cpp
astyle $style $options gui/*.h
astyle $style $options lib/*.cpp
astyle $style $options lib/*.h
astyle $style $options test/*.cpp
astyle $style $options test/*.h
astyle $style $options tools/*.cpp