diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2002-11-20 19:40:51 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2002-11-20 19:40:51 (GMT) |
commit | 9686a9034c1137647d784b83285d40c80c0daf05 (patch) | |
tree | 15506167e5bc5d269e076838eaa360c7359b39d6 /Modules/FindLATEX.cmake | |
parent | 9f7d94a1c4fb5d718086b464624e5bebf5a8aa82 (diff) | |
download | CMake-9686a9034c1137647d784b83285d40c80c0daf05.zip CMake-9686a9034c1137647d784b83285d40c80c0daf05.tar.gz CMake-9686a9034c1137647d784b83285d40c80c0daf05.tar.bz2 |
ENH: Now also locates the "makeindex" program.
Diffstat (limited to 'Modules/FindLATEX.cmake')
-rw-r--r-- | Modules/FindLATEX.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/FindLATEX.cmake b/Modules/FindLATEX.cmake index 2bc8ce3..21200cf 100644 --- a/Modules/FindLATEX.cmake +++ b/Modules/FindLATEX.cmake @@ -6,6 +6,7 @@ # BIBTEX_COMPILE = the full path to the BibTeX compiler # DVIPDF_COMPILE = the full path to the DVIPDF converter # DVIPS_COMPILE = the full path to the DVIPS converter +# MAKEINDEX_COMPILE = the full path to the MakeIndex compiler # FIND_PROGRAM(LATEX_COMPILE @@ -24,3 +25,7 @@ FIND_PROGRAM(DVIPS_COMPILE NAMES dvips ) +FIND_PROGRAM(MAKEINDEX_COMPILE + NAMES makeindex +) + |