#!/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