Add script to replace slots with Q_SLOTS

This commit is contained in:
Sebastian Kügler 2013-07-08 00:14:51 +02:00
parent e9a459a262
commit a54763b247

View File

@ -61,6 +61,10 @@ for FS in `find $PWD -type f -name 'CMakeLists.txt'`; do
perl -p -i -e 's/IMPORTS_INSTALL_DIR/QML_INSTALL_DIR/g' $FS
done
for FS in `find $PWD -type f -name '*.h'`; do
perl -p -i -e 's/slots/Q_SLOTS/g' $FS
done
#exit;