From 2b8afac3e7a0cca1fb9e371562a8449ffbf575d2 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 7 Feb 2024 16:53:05 +0900 Subject: Remove tqt-replace, uic-tqt and moc-tqt tools Signed-off-by: Michele Calgaro --- qtinterface/uic-tqt.cmake | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 qtinterface/uic-tqt.cmake (limited to 'qtinterface/uic-tqt.cmake') 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 " -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 -- cgit v1.2.1