diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-07-07 17:23:26 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-07-07 17:23:26 (GMT) |
commit | bcbf69496a8e7e703ecf4fb6e5de264f86ebea84 (patch) | |
tree | f08f27e02ce20e8ca59117d6d02be98fbe3c8c24 /configure | |
parent | 46570cfd109829f87a17c46e32006f901b9026f4 (diff) | |
download | Doxygen-bcbf69496a8e7e703ecf4fb6e5de264f86ebea84.zip Doxygen-bcbf69496a8e7e703ecf4fb6e5de264f86ebea84.tar.gz Doxygen-bcbf69496a8e7e703ecf4fb6e5de264f86ebea84.tar.bz2 |
Release-1.2.16-20020707
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -240,6 +240,10 @@ if test "$f_wizard" = YES; then echo "QTDIR is set, but include directory does not exist!" exit 2 fi + if test ! -x "$QTDIR/bin/moc"; then + echo "QTDIR is set, but the moc tool could not be found in $QTDIR/bin!" + exit 2 + fi echo " headers $QTDIR/include," echo " libraries $QTDIR/lib" fi @@ -411,6 +415,12 @@ EOF EOF fi fi +if test "$f_wizard" = YES; then + cat >> .tmakeconfig <<EOF +TMAKE_MOC = $QTDIR/bin/moc +EOF +fi + #if test "$f_platform" = "win32-g++"; then # cat >> .tmakeconfig <<EOF |