diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-01-22 11:11:41 -0500 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-01-22 11:11:41 -0500 |
commit | 7f336be8208da1464ad7abcb85a5db00cc336976 (patch) | |
tree | 59258e3b8f54324f10bc8c596fe181f871057c41 /Modules/FindLATEX.cmake | |
parent | af96ba019ef7eb5d393534b2870597771fcbe409 (diff) | |
download | cmake-7f336be8208da1464ad7abcb85a5db00cc336976.tar.gz |
merge branch change into main tree
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 +) + |