cmake/FindGhostscript.cmake
author Peter Kovacs <kpeter@inf.elte.hu>
Fri, 24 Apr 2009 11:54:48 +0200
changeset 609 4137ef9aacc6
parent 225 c5a40fc54f1a
permissions -rw-r--r--
Fix and uniform the usage of Graph and Parent typedefs (#268)

- Rename Graph typedefs to GraphType in the implementation of graph
maps and MapExtender to prevent conflicts (especially using VS).
They are not public.
- Make Parent typedefs private in all classes.
- Replace Digraph with Graph in some places
(fix faulty renamings of the script).
- Use Graph and Digraph typedefs (more) consequently.
     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 gs8.63/bin gs8.64/bin gs8.65/bin
     7   DOC "Ghostscript: PostScript and PDF language interpreter and previewer."
     8 )
     9 
    10 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Ghostscript DEFAULT_MSG GHOSTSCRIPT_EXECUTABLE)