You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
392 B
23 lines
392 B
#
|
|
# 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)
|
|
|
|
MARK_AS_ADVANCED(
|
|
DOT
|
|
DOT_PATH
|
|
DOXYGEN
|
|
)
|