FindDoxygen.cmake 343 B

123456789101112131415161718
  1. #
  2. # this module looks for Doxygen and the path to Graphiz's dot
  3. #
  4. FIND_PROGRAM(DOXYGEN
  5. doxygen
  6. )
  7. FIND_PROGRAM(DOT
  8. dot
  9. "C:/Program Files/ATT/Graphviz/bin"
  10. )
  11. # HKEY_CURRENT_USER\Software\AT&T\Graphviz
  12. # Since most of the time dot is called by Doxygen, the path to dot is useful too
  13. GET_FILENAME_COMPONENT(DOT_PATH ${DOT} PATH CACHE)