2001-10-24 01:06:19 +04:00
|
|
|
#
|
2001-10-24 01:47:32 +04:00
|
|
|
# this module looks for Doxygen and the path to Graphiz's dot
|
2001-10-24 01:06:19 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
FIND_PROGRAM(DOXYGEN
|
|
|
|
doxygen
|
|
|
|
)
|
2001-10-24 01:47:32 +04:00
|
|
|
|
|
|
|
FIND_PROGRAM(DOT
|
|
|
|
dot
|
|
|
|
"C:/Program Files/ATT/Graphviz/bin"
|
|
|
|
)
|
|
|
|
# HKEY_CURRENT_USER\Software\AT&T\Graphviz
|
|
|
|
|
2001-12-04 18:55:17 +03:00
|
|
|
# Since most of the time dot is called by Doxygen, the path to dot is
|
|
|
|
# useful too
|
2001-10-24 01:47:32 +04:00
|
|
|
GET_FILENAME_COMPONENT(DOT_PATH ${DOT} PATH CACHE)
|
|
|
|
|
2001-12-04 18:55:17 +03:00
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
DOT
|
|
|
|
DOT_PATH
|
|
|
|
DOXYGEN
|
|
|
|
)
|