diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-08 15:59:07 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-08 15:59:07 (GMT) |
commit | 8149dbed29973c2f37dcea0357cdb94ad84ecfb1 (patch) | |
tree | 80720127011181188b234a140b5346d38e79d09a /Modules/FindHTMLHelp.cmake | |
parent | 565ed7d8a184fdf4157f4c2c4fabe1ce4b07fde3 (diff) | |
download | CMake-8149dbed29973c2f37dcea0357cdb94ad84ecfb1.zip CMake-8149dbed29973c2f37dcea0357cdb94ad84ecfb1.tar.gz CMake-8149dbed29973c2f37dcea0357cdb94ad84ecfb1.tar.bz2 |
ENH: Cleanups and add missing CMakeOutput.log and CMakeError.log appending. Close Bug #136 - Verify that all modules that do try compile produce CMakeError.log and CMakeOutput.log
Diffstat (limited to 'Modules/FindHTMLHelp.cmake')
-rw-r--r-- | Modules/FindHTMLHelp.cmake | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/FindHTMLHelp.cmake b/Modules/FindHTMLHelp.cmake index 4649f0f..cf70330 100644 --- a/Modules/FindHTMLHelp.cmake +++ b/Modules/FindHTMLHelp.cmake @@ -3,7 +3,7 @@ # It defines: # HTML_HELP_COMPILER : full path to the HTML Help Compiler (hhc.exe) # HTML_HELP_INCLUDE_PATH : include path to the HTML Help API (htmlhelp.h) -# HTML_HELP_LIBRARY : full path to the HTML Help library (htmlhelp.lib) +# HTML_HELP_LIBRARY : full path to the HTML Help library (htmlhelp.lib) # IF (WIN32) @@ -12,7 +12,7 @@ IF (WIN32) hhc "[HKEY_CURRENT_USER\\Software\\Microsoft\\HTML Help Workshop;InstallDir]" "C:/Program Files/HTML Help Workshop" - ) + ) GET_FILENAME_COMPONENT (HTML_HELP_COMPILER_PATH ${HTML_HELP_COMPILER} PATH) @@ -21,19 +21,19 @@ IF (WIN32) "${HTML_HELP_COMPILER_PATH}/include" "[HKEY_CURRENT_USER\\Software\\Microsoft\\HTML Help Workshop;InstallDir]/include" "C:/Program Files/HTML Help Workshop/include" - ) + ) FIND_LIBRARY (HTML_HELP_LIBRARY htmlhelp "${HTML_HELP_COMPILER_PATH}/lib" "[HKEY_CURRENT_USER\\Software\\Microsoft\\HTML Help Workshop;InstallDir]/lib" "C:/Program Files/HTML Help Workshop/lib" - ) + ) MARK_AS_ADVANCED ( HTML_HELP_COMPILER HTML_HELP_INCLUDE_PATH - HTML_HELP_LIBRARY - ) + HTML_HELP_LIBRARY + ) ENDIF (WIN32) |