X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=development%2Ftools%2Fcount_total_lines_of_compiled_code.sh;h=95a248236e73553f482b474ec36351be233781ea;hb=1d23f8bf793bce04175ff59890761f18079d98ff;hp=0196d262c0bc4deec76136af025f8a47b389f917;hpb=5c4a20fe0406ca60a084f733b5fc4324ab1a0933;p=lyx.git diff --git a/development/tools/count_total_lines_of_compiled_code.sh b/development/tools/count_total_lines_of_compiled_code.sh index 0196d262c0..95a248236e 100755 --- a/development/tools/count_total_lines_of_compiled_code.sh +++ b/development/tools/count_total_lines_of_compiled_code.sh @@ -1,6 +1,6 @@ #!/bin/bash -qt=/usr/include/qt4 +qt=$QTDIR/include build=../../../build inc="-I$qt -I$qt/QtCore -I$qt/QtGui" @@ -14,6 +14,7 @@ inc="$inc -I../../src/frontends/qt4" s=0 t=0 +defines="-DQT_NO_STL -DQT_NO_KEYWORDS" #for i in `find ../../src/frontends/qt4 -name '*.cpp'` ; do #for i in `find ../../src/insets -name '*.cpp'` ; do #for i in `find ../../src/mathed -name '*.cpp'` ; do @@ -22,11 +23,13 @@ t=0 #for i in `find ../../src/graphics -name '*.cpp'` ; do #for i in `find ../../src/support/chdir.cpp` ; do for i in `find ../.. -name '*.cpp'` ; do +#for i in ../../src/frontends/qt4/GuiPrint.cpp ; do +#for i in ../../src/frontends/qt4/1.cpp ; do #echo $i - #echo "g++ $inc -DQT_NO_STL -E $i" - #g++ $inc -DQT_NO_STL -E $i > tmp/`basename $i` - g++ $inc -DQT_NO_STL -E $i > t - l=`g++ $inc -DQT_NO_STL -E $i | wc -l` + #echo "g++ $inc $defines -E $i" + #g++ $inc $defines -E $i > tmp/`basename $i` + g++ $inc $defines -E $i > t + l=`g++ $inc $defines -E $i | wc -l` f=`cat $i | wc -l` s=$[s + l] t=$[t + f]