summaryrefslogtreecommitdiffstats
path: root/qtinterface/uic-tqt.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'qtinterface/uic-tqt.cmake')
-rwxr-xr-xqtinterface/uic-tqt.cmake22
1 files changed, 0 insertions, 22 deletions
diff --git a/qtinterface/uic-tqt.cmake b/qtinterface/uic-tqt.cmake
deleted file mode 100755
index bcf2c58..0000000
--- a/qtinterface/uic-tqt.cmake
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-if [[ $1 == "" ]]; then
- echo "Usage: uic-tqt <uic arguments>"
-else
- for var in "$@"
- do
- if [[ ${var##*.} == "ui" ]]; then
- uifile=$var
- fi
- done
-
- if [[ "$uifile" != "" ]]; then
- cp -Rp $uifile $uifile.bkp
- tqt-replace $uifile
- fi
- @UIC_EXECUTABLE@ "$@"
- if [[ "$uifile" != "" ]]; then
- cp -Rp $uifile.bkp $uifile
- rm -f $uifile.bkp
- fi
-fi