summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmake/FindJBIG.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/FindJBIG.cmake b/cmake/FindJBIG.cmake
index ebc44af0..f0c232c3 100644
--- a/cmake/FindJBIG.cmake
+++ b/cmake/FindJBIG.cmake
@@ -41,6 +41,10 @@ find_path(JBIG_INCLUDE_DIR
NAMES jbig.h
PATH_SUFFIXES include)
+set(JBIG_OLD_FIND_LIBRARY_PREFIXES "${CMAKE_FIND_LIBRARY_PREFIXES}")
+# Library has a "lib" prefix even on Windows.
+set(CMAKE_FIND_LIBRARY_PREFIXES "lib" "")
+
# Allow JBIG_LIBRARY to be set manually, as the location of the jbig library
if(NOT JBIG_LIBRARY)
find_library(JBIG_LIBRARY_RELEASE
@@ -54,8 +58,11 @@ if(NOT JBIG_LIBRARY)
select_library_configurations(JBIG)
endif()
+set(CMAKE_FIND_LIBRARY_PREFIXES "${JBIG_OLD_FIND_LIBRARY_PREFIXES}")
+
unset(JBIG_NAMES)
unset(JBIG_NAMES_DEBUG)
+unset(JBIG_OLD_FIND_LIBRARY_PREFIXES)
mark_as_advanced(JBIG_INCLUDE_DIR)