From 4795ee851da3efc7dd4aef0ab24aa16e89c639d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Sat, 30 Oct 2021 01:56:18 +0200 Subject: FindLibEV.cmake: synchronise --- cmake/FindLibEV.cmake | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'cmake') diff --git a/cmake/FindLibEV.cmake b/cmake/FindLibEV.cmake index 73787a1..84dff36 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 QUIET libev) +pkg_check_modules (LibEV QUIET libev) -if (NOT LIBEV_FOUND) - find_path (LIBEV_INCLUDE_DIRS ev.h) - find_library (LIBEV_LIBRARIES NAMES ev) +set (required_vars LibEV_LIBRARIES) +if (NOT LibEV_FOUND) + find_path (LibEV_INCLUDE_DIRS ev.h) + find_library (LibEV_LIBRARIES NAMES ev) + list (APPEND required_vars LibEV_INCLUDE_DIRS) +endif () - if (LIBEV_INCLUDE_DIRS AND LIBEV_LIBRARIES) - set (LIBEV_FOUND TRUE) - endif (LIBEV_INCLUDE_DIRS AND LIBEV_LIBRARIES) -endif (NOT LIBEV_FOUND) +include (FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS (LibEV DEFAULT_MSG ${required_vars}) +mark_as_advanced (LibEV_LIBRARIES LibEV_INCLUDE_DIRS) -- cgit v1.2.3