cmake/FindGhostscript.cmake
author Balazs Dezso <deba@inf.elte.hu>
Sun, 21 Dec 2008 00:13:02 +0100
changeset 351 561be42c4b99
child 377 97070bd10b98
permissions -rw-r--r--
Bug fix in heap unionfind (ticket #197)

The minimum item in the unionfind tree might become inconsistent when
the split operation merges two subtrees which have equal keys. The
current changeset fix the problem. It also fix a wrong index.
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@225
     6
  PATH_SUFFIXES gs8.61/bin gs8.62/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)