diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-07-07 17:23:26 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-07-07 17:23:26 (GMT) |
commit | 457ca5c291eddeb1a4cd667e20cd8d7dfc1d7f2e (patch) | |
tree | f08f27e02ce20e8ca59117d6d02be98fbe3c8c24 /configure | |
parent | 977ad9d3ec7dff388b8be849ae4a596ae5cd3ad4 (diff) | |
download | Doxygen-457ca5c291eddeb1a4cd667e20cd8d7dfc1d7f2e.zip Doxygen-457ca5c291eddeb1a4cd667e20cd8d7dfc1d7f2e.tar.gz Doxygen-457ca5c291eddeb1a4cd667e20cd8d7dfc1d7f2e.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 |