diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2026-08-03 17:52:58 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2026-08-03 17:52:58 +0400 |
| commit | 1da6636ef354b77857a57059e47c3801304361cf (patch) | |
| tree | a8f07c59cd01ff275283d35dacc452c3730fe4a7 /tools/qmake6 | |
| parent | 04c1d3d8751ae55b0dc963fa32359875f58a3fe1 (diff) | |
remake ui with kirigamimain
Diffstat (limited to 'tools/qmake6')
| -rwxr-xr-x | tools/qmake6 | 12 |
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 |