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

  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
  13. # useful too
  14. GET_FILENAME_COMPONENT(DOT_PATH ${DOT} PATH CACHE)
  15. MARK_AS_ADVANCED(
  16. DOT
  17. DOT_PATH
  18. DOXYGEN
  19. )