Have cmake set doxygen to use dot if it's available.
Also a minor typos
This commit is contained in:
parent
a9d1979270
commit
d21d3125e7
|
@ -1566,7 +1566,7 @@ HIDE_UNDOC_RELATIONS = YES
|
|||
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
|
||||
# have no effect if this option is set to NO (the default)
|
||||
|
||||
HAVE_DOT = NO
|
||||
HAVE_DOT = @HAVE_DOT@
|
||||
|
||||
# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
|
||||
# allowed to run in parallel. When set to 0 (the default) doxygen will
|
||||
|
|
|
@ -4,6 +4,7 @@ if(DOXYGEN_FOUND)
|
|||
IF (DOXYGEN_DOT_EXECUTABLE)
|
||||
SET(HAVE_DOT YES)
|
||||
ELSE (DOXYGEN_DOT_EXECUTABLE)
|
||||
message("Note: Doxygen docs will look better with graphviz's dot installed.")
|
||||
SET(HAVE_DOT NO)
|
||||
ENDIF (DOXYGEN_DOT_EXECUTABLE)
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
/** \page doctips Documenting FreeCAD's code
|
||||
|
||||
Below are a few remarks and notes about Doxygen usage for FreeCAD, gathered after examining and removing most of the warnings emited by Doxygen:
|
||||
Below are a few remarks and notes about Doxygen usage for FreeCAD,
|
||||
gathered after examining and removing most of the warnings emitted
|
||||
by Doxygen. For information on (re)building the source docs, see
|
||||
\ref makingdocs
|
||||
|
||||
- Pay attention to warnings emited by doxygen when building the doc.
|
||||
The item giving rise to the warning will be skipped and will not be
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<a href="http://www.freecadweb.org/wiki/index.php?title=Main_Page">Wiki</a>
|
||||
|
||||
FreeCAD being a fast moving target, don't hesitate to rebuild an up to
|
||||
date doc from svn source as often as needed. CPU cycles are cheap
|
||||
date doc from source as often as needed (\ref makingdocs "more info"). CPU cycles are cheap
|
||||
nowadays!
|
||||
|
||||
The homepage of FreeCAD is <a href="http://www.freecadweb.org">here</a>.
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace Dialog {
|
|||
/** Shows an overview of all available commands of all groups and modules.
|
||||
* You can customize your workbenches just by drag&dropping any commands
|
||||
* onto the toolbars or commandbars. But you cannot modify any standard toolbars or
|
||||
* commandbars such as "File, View, ...". It is only poosible to
|
||||
* commandbars such as "File, View, ...". It is only possible to
|
||||
* customize your own toolbars or commandbars.
|
||||
* \author Werner Mayer
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue
Block a user