diff options
-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 +) + |