Modules to find Perl and the HTML Help Compiler

This commit is contained in:
Sebastien Barre 2001-10-23 16:55:34 -04:00
parent 8074eeebf1
commit b48d9903f7
2 changed files with 18 additions and 0 deletions

9
Modules/FindHhc.cmake Normal file
View File

@ -0,0 +1,9 @@
#
# this module looks for Microsoft HTML Help Compiler
#
FIND_PROGRAM(HHC
hhc
"C:/Program Files/HTML Help Workshop"
"[HKEY_CURRENT_USER\\Software\\Microsoft\\HTML Help Workshop;InstallDir]"
)

9
Modules/FindPerl.cmake Normal file
View File

@ -0,0 +1,9 @@
#
# this module looks for Perl
#
FIND_PROGRAM(PERL
perl
"C:/Perl/bin"
[HKEY_LOCAL_MACHINE\\SOFTWARE\\ActiveState\\ActivePerl\\628]/bin
)