summaryrefslogtreecommitdiff
path: root/tools/qmake6
diff options
context:
space:
mode:
authorAndrew Guschin <guschin@altlinux.org>2026-08-03 17:52:58 +0400
committerAndrew Guschin <guschin@altlinux.org>2026-08-03 17:52:58 +0400
commit1da6636ef354b77857a57059e47c3801304361cf (patch)
treea8f07c59cd01ff275283d35dacc452c3730fe4a7 /tools/qmake6
parent04c1d3d8751ae55b0dc963fa32359875f58a3fe1 (diff)
remake ui with kirigamimain
Diffstat (limited to 'tools/qmake6')
-rwxr-xr-xtools/qmake612
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/qmake6 b/tools/qmake6
new file mode 100755
index 0000000..c1d7181
--- /dev/null
+++ b/tools/qmake6
@@ -0,0 +1,12 @@
+#!/bin/sh
+set -eu
+
+if command -v qmake6 >/dev/null 2>&1; then
+ exec qmake6 "$@"
+fi
+if command -v qmake-qt6 >/dev/null 2>&1; then
+ exec qmake-qt6 "$@"
+fi
+
+echo "Qt 6 qmake was not found; install the Qt 6 development tools" >&2
+exit 127