2014-10-28 02:39:37 +01:00
|
|
|
# Public Domain
|
|
|
|
|
|
|
|
# The author of libev is a dick and doesn't want to add support for pkg-config,
|
|
|
|
# forcing us to include this pointless file in the distribution.
|
|
|
|
|
|
|
|
# Some distributions do add it, though
|
|
|
|
find_package (PkgConfig REQUIRED)
|
2016-01-14 20:20:39 +01:00
|
|
|
pkg_check_modules (LIBEV QUIET libev)
|
2014-10-28 02:39:37 +01:00
|
|
|
|
2016-01-14 20:20:39 +01:00
|
|
|
set (required_vars LIBEV_LIBRARIES)
|
2014-10-28 02:39:37 +01:00
|
|
|
if (NOT LIBEV_FOUND)
|
|
|
|
find_path (LIBEV_INCLUDE_DIRS ev.h)
|
|
|
|
find_library (LIBEV_LIBRARIES NAMES ev)
|
2016-01-14 20:20:39 +01:00
|
|
|
list (APPEND required_vars LIBEV_INCLUDE_DIRS)
|
2014-10-28 02:39:37 +01:00
|
|
|
endif (NOT LIBEV_FOUND)
|
|
|
|
|
2016-01-14 20:20:39 +01:00
|
|
|
include (FindPackageHandleStandardArgs)
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS (LIBEV DEFAULT_MSG ${required_vars})
|
|
|
|
|
|
|
|
mark_as_advanced (LIBEV_LIBRARIES LIBEV_INCLUDE_DIRS)
|