blob: c1d71811708e811a6f4ecca79bf9cb73910abb63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|