aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/FindPopplerQt4.cmake7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/FindPopplerQt4.cmake b/modules/FindPopplerQt4.cmake
index fbc1820c..04911bbd 100644
--- a/modules/FindPopplerQt4.cmake
+++ b/modules/FindPopplerQt4.cmake
@@ -27,11 +27,12 @@ endif(NOT WIN32)
find_path(POPPLER_QT4_INCLUDE_DIR
NAMES poppler-qt4.h
PATH_SUFFIXES poppler/qt4 poppler
- PATHS ${_PopplerQt4IncDir}
+ HINTS ${_PopplerQt4IncDir}
)
-find_library(POPPLER_QT4_LIBRARIES poppler-qt4
- ${_PopplerQt4LinkDir}
+find_library(POPPLER_QT4_LIBRARIES
+ NAMES poppler-qt4
+ HINTS ${_PopplerQt4LinkDir}
)
if (POPPLER_QT4_INCLUDE_DIR AND POPPLER_QT4_LIBRARIES)