aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindLibEV.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindLibEV.cmake')
-rw-r--r--cmake/FindLibEV.cmake12
1 files changed, 7 insertions, 5 deletions
diff --git a/cmake/FindLibEV.cmake b/cmake/FindLibEV.cmake
index cdc67dc..e8a1fda 100644
--- a/cmake/FindLibEV.cmake
+++ b/cmake/FindLibEV.cmake
@@ -5,14 +5,16 @@
# Some distributions do add it, though
find_package (PkgConfig REQUIRED)
-pkg_check_modules (LIBEV libev)
+pkg_check_modules (LIBEV QUIET libev)
+set (required_vars LIBEV_LIBRARIES)
if (NOT LIBEV_FOUND)
find_path (LIBEV_INCLUDE_DIRS ev.h)
find_library (LIBEV_LIBRARIES NAMES ev)
-
- if (LIBEV_INCLUDE_DIRS AND LIBEV_LIBRARIES)
- set (LIBEV_FOUND TRUE)
- endif (LIBEV_INCLUDE_DIRS AND LIBEV_LIBRARIES)
+ list (APPEND required_vars LIBEV_INCLUDE_DIRS)
endif (NOT LIBEV_FOUND)
+include (FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS (LIBEV DEFAULT_MSG ${required_vars})
+
+mark_as_advanced (LIBEV_LIBRARIES LIBEV_INCLUDE_DIRS)