cmake/FindGhostscript.cmake
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 09 Oct 2008 13:27:35 +0200
changeset 314 2cc60866a0c9
child 520 97070bd10b98
permissions -rw-r--r--
Doc reorganization + improvements

- Reorganize several tools (move them to other modules).
- Add new module for map concepts.
- Remove the doc of all tools in lemon/bits.
- Improvements in groups.dox.
- Fix some doxygen warnings.
     1 INCLUDE(FindPackageHandleStandardArgs)
     2 
     3 FIND_PROGRAM(GHOSTSCRIPT_EXECUTABLE
     4   NAMES gs gswin32c
     5   PATHS "$ENV{ProgramFiles}/gs"
     6   PATH_SUFFIXES gs8.61/bin gs8.62/bin
     7   DOC "Ghostscript: PostScript and PDF language interpreter and previewer."
     8 )
     9 
    10 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Ghostscript DEFAULT_MSG GHOSTSCRIPT_EXECUTABLE)