diff options
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 21200cf771..ba00965688 100644 --- a/Modules/FindLATEX.cmake +++ b/Modules/FindLATEX.cmake @@ -5,6 +5,7 @@ # LATEX_COMPILE = the full path to the LaTeX compiler # BIBTEX_COMPILE = the full path to the BibTeX compiler # DVIPDF_COMPILE = the full path to the DVIPDF converter +# PS2PDF_COMPILE = the full path to the PS2PDF converter # DVIPS_COMPILE = the full path to the DVIPS converter # MAKEINDEX_COMPILE = the full path to the MakeIndex compiler # @@ -29,3 +30,7 @@ FIND_PROGRAM(MAKEINDEX_COMPILE NAMES makeindex ) +FIND_PROGRAM(PS2PDF_COMPILE + NAMES ps2pdf +) + |