OSCAR-code/configure
Sean Stangl fc51eb7fee Add a configure script defaulting to Qt5, and fix Qt5 on Fedora.
Fedora doesn't ship a qextserialport compatible with Qt5,
but the version in 3rdparty/ is perfectly viable.

Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
2014-04-23 15:02:07 +10:00

27 lines
528 B
Bash
Executable File

#!/bin/bash
command_exists() {
type "$1" &> /dev/null
}
# Get the base directory of the source distribution (where this script is)
DIR="$(cd "$(dirname $0)" && pwd)"
# Attempt distro-specific Qt5 QMake detection.
if command_exists qmake-qt5; then
QMAKE=qmake-qt5
elif command_exists qt5-qmake; then
QMAKE=qt5-qmake
elif command_exists qmake; then
QMAKE=qmake
fi
# If no qmake found, fail.
if [[ -z ${QMAKE} ]]; then
echo "Missing QMake for Qt5 on system."
exit 1
fi
# Finally, configure the build.
qmake-qt5 "${DIR}"