cmake/FindGhostscript.cmake
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 29 Apr 2009 16:54:27 +0200
changeset 638 111698359429
parent 225 c5a40fc54f1a
permissions -rw-r--r--
Less map copying in NetworkSimplex (#234)

- The graph is copied in the constructor instead of the init() function.
It must not be modified after the class is constructed.
- The maps are copied once (instead of twice).
- Remove FlowMap, PotentialMap typedefs and flowMap(), pontentialMap()
setter functions.
- flowMap() and potentialMap() query functions copy the values into the
given map (reference) instead of returning a const reference to a
previously constructed map.
alpar@225
     1
INCLUDE(FindPackageHandleStandardArgs)
alpar@225
     2
alpar@225
     3
FIND_PROGRAM(GHOSTSCRIPT_EXECUTABLE
alpar@225
     4
  NAMES gs gswin32c
alpar@225
     5
  PATHS "$ENV{ProgramFiles}/gs"
alpar@501
     6
  PATH_SUFFIXES gs8.61/bin gs8.62/bin gs8.63/bin gs8.64/bin gs8.65/bin
alpar@225
     7
  DOC "Ghostscript: PostScript and PDF language interpreter and previewer."
alpar@225
     8
)
alpar@225
     9
alpar@225
    10
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Ghostscript DEFAULT_MSG GHOSTSCRIPT_EXECUTABLE)