File indexing completed on 2024-04-14 14:12:12

0001 #!/bin/bash
0002 
0003 # Get the directory where the script is stored
0004 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
0005 
0006 cd "$DIR"/../kstars
0007 krazy2all --check-sets c++,foss,qt5 --exclude typedefs,cpp,copyright,license,syscalls,postfixop,includes
0008 cd ..
0009 cd "$DIR"/../datahandlers
0010 krazy2all --check-sets c++,foss,qt5 --exclude typedefs,cpp,copyright,license,syscalls,postfixop,includes
0011 cd ..
0012 cd "$DIR"/../Tests
0013 krazy2all --check-sets c++,foss,qt5 --exclude typedefs,cpp,copyright,license,syscalls,postfixop,includes
0014 cd ..