mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
127 lines
3.3 KiB
CMake
127 lines
3.3 KiB
CMake
# - Find Latex
|
|
# This module finds if Latex is installed and determines where the
|
|
# executables are. This code sets the following variables:
|
|
#
|
|
# LATEX_COMPILER: path to the LaTeX compiler
|
|
# PDFLATEX_COMPILER: path to the PdfLaTeX compiler
|
|
# BIBTEX_COMPILER: path to the BibTeX compiler
|
|
# MAKEINDEX_COMPILER: path to the MakeIndex compiler
|
|
# DVIPS_CONVERTER: path to the DVIPS converter
|
|
# PS2PDF_CONVERTER: path to the PS2PDF converter
|
|
# LATEX2HTML_CONVERTER: path to the LaTeX2Html converter
|
|
#
|
|
|
|
#=============================================================================
|
|
# Copyright 2002-2009 Kitware, Inc.
|
|
#
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
# see accompanying file Copyright.txt for details.
|
|
#
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the License for more information.
|
|
#=============================================================================
|
|
# (To distribute this file outside of CMake, substitute the full
|
|
# License text for the above reference.)
|
|
|
|
IF (WIN32)
|
|
|
|
# Try to find the MikTex binary path (look for its package manager).
|
|
|
|
FIND_PATH(MIKTEX_BINARY_PATH mpm.exe
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\MiK\\MiKTeX\\CurrentVersion\\MiKTeX;Install Root]/miktex/bin"
|
|
DOC
|
|
"Path to the MikTex binary directory."
|
|
)
|
|
MARK_AS_ADVANCED(MIKTEX_BINARY_PATH)
|
|
|
|
# Try to find the GhostScript binary path (look for gswin32).
|
|
|
|
GET_FILENAME_COMPONENT(GHOSTSCRIPT_BINARY_PATH_FROM_REGISTERY_8_00
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\AFPL Ghostscript\\8.00;GS_DLL]" PATH
|
|
)
|
|
|
|
GET_FILENAME_COMPONENT(GHOSTSCRIPT_BINARY_PATH_FROM_REGISTERY_7_04
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\AFPL Ghostscript\\7.04;GS_DLL]" PATH
|
|
)
|
|
|
|
FIND_PATH(GHOSTSCRIPT_BINARY_PATH gswin32.exe
|
|
${GHOSTSCRIPT_BINARY_PATH_FROM_REGISTERY_8_00}
|
|
${GHOSTSCRIPT_BINARY_PATH_FROM_REGISTERY_7_04}
|
|
DOC "Path to the GhostScript binary directory."
|
|
)
|
|
MARK_AS_ADVANCED(GHOSTSCRIPT_BINARY_PATH)
|
|
|
|
FIND_PATH(GHOSTSCRIPT_LIBRARY_PATH ps2pdf13.bat
|
|
"${GHOSTSCRIPT_BINARY_PATH}/../lib"
|
|
DOC "Path to the GhostScript library directory."
|
|
)
|
|
MARK_AS_ADVANCED(GHOSTSCRIPT_LIBRARY_PATH)
|
|
|
|
ENDIF (WIN32)
|
|
|
|
FIND_PROGRAM(LATEX_COMPILER
|
|
NAMES latex
|
|
PATHS ${MIKTEX_BINARY_PATH}
|
|
/usr/bin
|
|
)
|
|
|
|
FIND_PROGRAM(PDFLATEX_COMPILER
|
|
NAMES pdflatex
|
|
PATHS ${MIKTEX_BINARY_PATH}
|
|
/usr/bin
|
|
)
|
|
|
|
FIND_PROGRAM(BIBTEX_COMPILER
|
|
NAMES bibtex
|
|
PATHS ${MIKTEX_BINARY_PATH}
|
|
/usr/bin
|
|
)
|
|
|
|
FIND_PROGRAM(MAKEINDEX_COMPILER
|
|
NAMES makeindex
|
|
PATHS ${MIKTEX_BINARY_PATH}
|
|
/usr/bin
|
|
)
|
|
|
|
FIND_PROGRAM(DVIPS_CONVERTER
|
|
NAMES dvips
|
|
PATHS ${MIKTEX_BINARY_PATH}
|
|
/usr/bin
|
|
)
|
|
|
|
FIND_PROGRAM(DVIPDF_CONVERTER
|
|
NAMES dvipdfm dvipdft dvipdf
|
|
PATHS ${MIKTEX_BINARY_PATH}
|
|
/usr/bin
|
|
)
|
|
|
|
IF (WIN32)
|
|
FIND_PROGRAM(PS2PDF_CONVERTER
|
|
NAMES ps2pdf14.bat
|
|
PATHS ${GHOSTSCRIPT_LIBRARY_PATH}
|
|
)
|
|
ELSE (WIN32)
|
|
FIND_PROGRAM(PS2PDF_CONVERTER
|
|
NAMES ps2pdf14 ps2pdf
|
|
)
|
|
ENDIF (WIN32)
|
|
|
|
FIND_PROGRAM(LATEX2HTML_CONVERTER
|
|
NAMES latex2html
|
|
PATHS ${MIKTEX_BINARY_PATH}
|
|
/usr/bin
|
|
)
|
|
|
|
|
|
MARK_AS_ADVANCED(
|
|
LATEX_COMPILER
|
|
PDFLATEX_COMPILER
|
|
BIBTEX_COMPILER
|
|
MAKEINDEX_COMPILER
|
|
DVIPS_CONVERTER
|
|
DVIPDF_CONVERTER
|
|
PS2PDF_CONVERTER
|
|
LATEX2HTML_CONVERTER
|
|
)
|