summaryrefslogtreecommitdiff
path: root/Modules/FindDoxygen.cmake
blob: 3b8fc9fc5cfc93f2a71f29786bd1d0c38d0931ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 
# 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
)