diff options
author | Michele Calgaro <[email protected]> | 2024-02-07 16:53:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-07 16:53:05 +0900 |
commit | 2b8afac3e7a0cca1fb9e371562a8449ffbf575d2 (patch) | |
tree | 527822b037feffb33e846ee5844d5f3d7d87caaf /qtinterface/uic-tqt.cmake | |
parent | 233aee46f57861eceff8e6ad7b38a2e79f2d62c8 (diff) | |
download | tqtinterface-2b8afac3e7a0cca1fb9e371562a8449ffbf575d2.tar.gz tqtinterface-2b8afac3e7a0cca1fb9e371562a8449ffbf575d2.zip |
Remove tqt-replace, uic-tqt and moc-tqt tools
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'qtinterface/uic-tqt.cmake')
-rwxr-xr-x | qtinterface/uic-tqt.cmake | 22 |
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 |