FindHTMLHelp.cmake 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #.rst:
  2. # FindHTMLHelp
  3. # ------------
  4. #
  5. # This module looks for Microsoft HTML Help Compiler
  6. #
  7. # It defines:
  8. #
  9. # ::
  10. #
  11. # HTML_HELP_COMPILER : full path to the Compiler (hhc.exe)
  12. # HTML_HELP_INCLUDE_PATH : include path to the API (htmlhelp.h)
  13. # HTML_HELP_LIBRARY : full path to the library (htmlhelp.lib)
  14. #=============================================================================
  15. # Copyright 2002-2009 Kitware, Inc.
  16. #
  17. # Distributed under the OSI-approved BSD License (the "License");
  18. # see accompanying file Copyright.txt for details.
  19. #
  20. # This software is distributed WITHOUT ANY WARRANTY; without even the
  21. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  22. # See the License for more information.
  23. #=============================================================================
  24. # (To distribute this file outside of CMake, substitute the full
  25. # License text for the above reference.)
  26. if(WIN32)
  27. find_program(HTML_HELP_COMPILER
  28. hhc
  29. "[HKEY_CURRENT_USER\\Software\\Microsoft\\HTML Help Workshop;InstallDir]"
  30. "$ENV{ProgramFiles}/HTML Help Workshop"
  31. "C:/Program Files/HTML Help Workshop"
  32. )
  33. get_filename_component(HTML_HELP_COMPILER_PATH "${HTML_HELP_COMPILER}" PATH)
  34. find_path(HTML_HELP_INCLUDE_PATH
  35. htmlhelp.h
  36. "${HTML_HELP_COMPILER_PATH}/include"
  37. "[HKEY_CURRENT_USER\\Software\\Microsoft\\HTML Help Workshop;InstallDir]/include"
  38. "$ENV{ProgramFiles}/HTML Help Workshop/include"
  39. "C:/Program Files/HTML Help Workshop/include"
  40. )
  41. find_library(HTML_HELP_LIBRARY
  42. htmlhelp
  43. "${HTML_HELP_COMPILER_PATH}/lib"
  44. "[HKEY_CURRENT_USER\\Software\\Microsoft\\HTML Help Workshop;InstallDir]/lib"
  45. "$ENV{ProgramFiles}/HTML Help Workshop/lib"
  46. "C:/Program Files/HTML Help Workshop/lib"
  47. )
  48. mark_as_advanced(
  49. HTML_HELP_COMPILER
  50. HTML_HELP_INCLUDE_PATH
  51. HTML_HELP_LIBRARY
  52. )
  53. endif()