Changeset 2174


Ignore:
Timestamp:
Dec 23, 2012, 10:33:21 AM (10 years ago)
Author:
jylam
Message:
  • Doxygen: generate collaboration diagrams if dot is available
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r2167 r2174  
    126126      fi
    127127    fi
     128    AC_PATH_PROG(DOT, dot, no)
     129    if test "${DOT}" != "no"; then
     130      AC_MSG_RESULT(yes)
     131      USE_DOT="YES"
     132    else
     133      USE_DOT="NO"
     134    fi
    128135  fi
    129136fi
    130137AM_CONDITIONAL(BUILD_DOCUMENTATION, test "${DOXYGEN}" != "no")
    131138AM_CONDITIONAL(USE_LATEX, test "${LATEX}" != "no")
     139AM_CONDITIONAL(USE_DOT, test "${DOT}" != "no")
    132140
    133141dnl No exceptions
     
    412420AC_SUBST(LOL_LIBS)
    413421
     422AC_SUBST(USE_DOT)
    414423
    415424AC_CONFIG_FILES(
  • trunk/doc/doxygen.cfg.in

    r2169 r2174  
    13601360# or is not a class.
    13611361
    1362 HIDE_UNDOC_RELATIONS   = YES
     1362HIDE_UNDOC_RELATIONS   = NO
    13631363
    13641364# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
     
    13671367# have no effect if this option is set to NO (the default)
    13681368
    1369 HAVE_DOT               = NO
     1369HAVE_DOT               = @USE_DOT@
    13701370
    13711371# By default doxygen will write a font called FreeSans.ttf to the output
     
    14731473# found. If left blank, it is assumed the dot tool can be found in the path.
    14741474
    1475 DOT_PATH               =
     1475DOT_PATH               = @DOT@
    14761476
    14771477# The DOTFILE_DIRS tag can be used to specify one or more directories that
Note: See TracChangeset for help on using the changeset viewer.