mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
some helper
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20716 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
721e47e32f
commit
e858466d36
40
development/misc/count_lines_of_included_code.sh
Normal file
40
development/misc/count_lines_of_included_code.sh
Normal file
@ -0,0 +1,40 @@
|
||||
|
||||
for i in \
|
||||
boost/bind.hpp \
|
||||
boost/array.hpp \
|
||||
boost/assert.hpp \
|
||||
boost/crc.hpp \
|
||||
boost/cregex.hpp \
|
||||
boost/current_function.hpp \
|
||||
boost/function.hpp \
|
||||
boost/iterator/indirect_iterator.hpp \
|
||||
boost/scoped_array.hpp \
|
||||
boost/scoped_ptr.hpp \
|
||||
boost/shared_ptr.hpp \
|
||||
boost/signal.hpp \
|
||||
boost/signals/connection.hpp \
|
||||
boost/signals/trackable.hpp \
|
||||
boost/tokenizer.hpp \
|
||||
boost/tuple/tuple.hpp \
|
||||
boost/utility.hpp \
|
||||
boost/version.hpp \
|
||||
boost/signals/trackable.hpp \
|
||||
string \
|
||||
vector \
|
||||
map \
|
||||
list \
|
||||
deque \
|
||||
QObject \
|
||||
QString \
|
||||
QList \
|
||||
QVector \
|
||||
QMap \
|
||||
QHash \
|
||||
QRegExp
|
||||
do
|
||||
echo "#include <$i>" > 1.cpp
|
||||
inc='-I/suse/usr/src/lyx/trunk/boost -I/usr/include/qt4/QtCore -I/usr/include/qt4'
|
||||
l=`g++ $inc -DQT_NO_STL -E 1.cpp | wc -l`
|
||||
printf "%-40s: %d\n" $i $l
|
||||
done
|
||||
|
@ -16,7 +16,7 @@ s=0
|
||||
for i in `find ../.. -name *.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 > tmp/`basename $i`
|
||||
l=`g++ $inc -DQT_NO_STL -E $i | wc -l`
|
||||
s=$[s + l]
|
||||
printf "%10d %-40s\n" $l $i
|
||||
|
Loading…
Reference in New Issue
Block a user