diff options
Diffstat (limited to 'autoconf/ax_qt.m4')
-rw-r--r-- | autoconf/ax_qt.m4 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/autoconf/ax_qt.m4 b/autoconf/ax_qt.m4 new file mode 100644 index 0000000..6b55c13 --- /dev/null +++ b/autoconf/ax_qt.m4 @@ -0,0 +1,27 @@ +# Author: Remko Tronçon + +AC_DEFUN([AX_QT], +[ + AC_ARG_WITH( + [qt], + AC_HELP_STRING([--with-qt=@<:@ARG@:>@],[Path to Qt installation]), + [ + WITH_QT="$withval" + if test "$withval" != "no" -a "$withval" != "yes"; then + QT_PATH="$withval/bin" + else + QT_PATH="$PATH" + fi + ], + [ + WITH_QT="yes" + QT_PATH="$PATH" + ]) + + if test "$WITH_QT" != "no"; then + AC_PATH_PROG(QMAKE, qmake, [], $QT_PATH) + if test "$QMAKE"; then + HAVE_QT=yes + fi + fi +]) |