Find Graphivz's dot too

This commit is contained in:
Sebastien Barre 2001-10-23 17:47:32 -04:00
parent a9e376de1d
commit 10c54eb2a5
1 changed files with 12 additions and 1 deletions

View File

@ -1,7 +1,18 @@
#
# this module looks for Doxygen
# this module looks for Doxygen and the path to Graphiz's dot
#
FIND_PROGRAM(DOXYGEN
doxygen
)
FIND_PROGRAM(DOT
dot
"C:/Program Files/ATT/Graphviz/bin"
)
# HKEY_CURRENT_USER\Software\AT&T\Graphviz
# Since most of the time dot is called by Doxygen, the path to dot is useful too
GET_FILENAME_COMPONENT(DOT_PATH ${DOT} PATH CACHE)