summaryrefslogtreecommitdiffstats
path: root/qtinterface/dcopidl2cpp-tqt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-10 19:53:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-11 20:56:14 +0900
commit70b3c7d4ffbdbe4d38582d5547d3bf81077d23ac (patch)
tree2ac36e438f8f641b7b96d7bbc9e806729226564b /qtinterface/dcopidl2cpp-tqt
parent2b8afac3e7a0cca1fb9e371562a8449ffbf575d2 (diff)
downloadtqtinterface-70b3c7d4.tar.gz
tqtinterface-70b3c7d4.zip
Removed unused scripts
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qtinterface/dcopidl2cpp-tqt')
-rwxr-xr-xqtinterface/dcopidl2cpp-tqt27
1 files changed, 0 insertions, 27 deletions
diff --git a/qtinterface/dcopidl2cpp-tqt b/qtinterface/dcopidl2cpp-tqt
deleted file mode 100755
index 4f9080a..0000000
--- a/qtinterface/dcopidl2cpp-tqt
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-if [[ $1 == "" ]]; then
- echo "Usage: dcopidl2cpp-tqt <dcopidl2cpp_binary> <options> <input_kidl_file>"
-else
- # This is more complicated than the others, as the kidl file must be parsed and the input files extracted
-
- # Extract the source working directory and all input files
- INPUT_FILES=$(cat ${BASH_ARGV[0]} | grep "<SOURCE>" | sed 's/<SOURCE>//g' | sed 's/<\/SOURCE>//g' | xargs)
- INPUT_DIR=${INPUT_FILES%/*}
-
- # Redirect all input files
- for curfile in $INPUT_FILES
- do
- cp -Rp "$curfile" "$curfile.bkp"
- done
-
- # Execute the dcopidl2cpp command
- $@
-
- # Undo input file redirection
- for curfile in $INPUT_FILES
- do
- cp -Rp "$curfile.bkp" "$curfile"
- rm -f "$curfile.bkp"
- done
-fi