You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqtinterface/qtinterface/uic-tqt.cmake

19 lines
287 B

#!/bin/bash
if [[ $1 == "" ]]; then
echo "Usage: uic-tqt <uic arguments>"
else
for var in "$@"
do
if [[ ${var##*.} == "ui" ]]; then
uifile=$var
fi
done
cp -Rp $uifile $uifile.bkp
tqt-replace $uifile
@UIC_EXECUTABLE@ "$@"
cp -Rp $uifile.bkp $uifile
rm -f $uifile.bkp
fi