blob: f2a59b8c94812a29af8d7625a2cf037b4f78fa95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# - Try to find the Qt4 binding of the Poppler library
# Once done this will define
#
# POPPLER_QT4_FOUND - system has poppler-qt4
# POPPLER_QT4_INCLUDE_DIR - the poppler-qt4 include directory
# POPPLER_QT4_LIBRARIES - Link these to use poppler-qt4
# POPPLER_QT4_DEFINITIONS - Compiler switches required for using poppler-qt4
#
# use pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
# Copyright (c) 2006, Wilfried Huss, <wilfried.huss@gmx.at>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
find_package(PkgConfig)
pkg_check_modules(PC_POPPLERQT4 QUIET poppler-qt4)
set(POPPLER_QT4_DEFINITIONS ${PC_POPPLERQT4_CFLAGS_OTHER})
find_path(POPPLER_QT4_INCLUDE_DIR
NAMES poppler-qt4.h
HINTS ${PC_POPPLERQT4_INCLUDEDIR}
PATH_SUFFIXES poppler/qt4 poppler
)
find_library(POPPLER_QT4_LIBRARY
NAMES poppler-qt4
HINTS ${PC_POPPLERQT4_LIBDIR}
)
set(POPPLER_QT4_LIBRARIES ${POPPLER_QT4_LIBRARY})
if (POPPLER_QT4_INCLUDE_DIR AND POPPLER_QT4_LIBRARIES)
set(POPPLER_QT4_FOUND TRUE)
else (POPPLER_QT4_INCLUDE_DIR AND POPPLER_QT4_LIBRARIES)
set(POPPLER_QT4_FOUND FALSE)
endif (POPPLER_QT4_INCLUDE_DIR AND POPPLER_QT4_LIBRARIES)
if (POPPLER_QT4_FOUND)
if (NOT PopplerQt4_FIND_QUIETLY)
message(STATUS "Found poppler-qt4: library: ${POPPLER_QT4_LIBRARIES}, include path: ${POPPLER_QT4_INCLUDE_DIR}")
endif (NOT PopplerQt4_FIND_QUIETLY)
else (POPPLER_QT4_FOUND)
if (PopplerQt4_FIND_REQUIRED)
message(FATAL_ERROR "Could NOT find poppler-qt4")
endif (PopplerQt4_FIND_REQUIRED)
endif (POPPLER_QT4_FOUND)
mark_as_advanced(POPPLER_QT4_INCLUDE_DIR POPPLER_QT4_LIBRARIES)
|