summaryrefslogtreecommitdiff
path: root/cmake/FindPOPT.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindPOPT.cmake')
-rw-r--r--cmake/FindPOPT.cmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/cmake/FindPOPT.cmake b/cmake/FindPOPT.cmake
index de29c7e..4242875 100644
--- a/cmake/FindPOPT.cmake
+++ b/cmake/FindPOPT.cmake
@@ -4,13 +4,15 @@
#
# POPT_FOUND - System has popt
# POPT_INCLUDE_DIR - The popt include directory
-# POPT_LIBRARIES - The libraries needed to use popt
+# POPT_LIBRARY - The libraries needed to use popt
# use pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
find_package(PkgConfig QUIET)
-pkg_search_module(PC_POPT QUIET popt)
+if (PKG_CONFIG_FOUND)
+ pkg_search_module(PC_POPT QUIET popt)
+endif ()
# Find the include directories
FIND_PATH(POPT_INCLUDE_DIR